@kipicore/dbcore 1.0.9 → 1.1.0

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 (1687) hide show
  1. package/dist/scripts/fix-import-extensions.d.ts +1 -0
  2. package/dist/scripts/fix-import-extensions.js +28 -0
  3. package/dist/scripts/generate-index.d.ts +1 -0
  4. package/dist/scripts/generate-index.js +38 -0
  5. package/dist/src/configs/aws.d.ts +2 -0
  6. package/dist/src/configs/aws.js +9 -0
  7. package/dist/src/configs/env.d.ts +15 -0
  8. package/dist/src/configs/env.js +44 -0
  9. package/dist/src/configs/postgresConfig.d.ts +8 -0
  10. package/dist/src/configs/postgresConfig.js +32 -0
  11. package/dist/src/constants/app.d.ts +848 -0
  12. package/dist/src/constants/app.js +1067 -0
  13. package/dist/src/constants/defaultModelAttributes.d.ts +17 -0
  14. package/dist/src/constants/defaultModelAttributes.js +18 -0
  15. package/dist/src/constants/errorMessages.d.ts +1055 -0
  16. package/dist/src/constants/errorMessages.js +1161 -0
  17. package/dist/src/constants/httpStatusCode.d.ts +26 -0
  18. package/dist/src/constants/httpStatusCode.js +27 -0
  19. package/dist/src/constants/successMessages.d.ts +699 -0
  20. package/dist/src/constants/successMessages.js +807 -0
  21. package/dist/src/db/mongodb.d.ts +1 -0
  22. package/dist/src/db/mongodb.js +17 -0
  23. package/dist/src/db/postgres.d.ts +2 -0
  24. package/dist/src/db/postgres.js +14 -0
  25. package/dist/src/db/psql/index.d.ts +16 -0
  26. package/dist/src/db/psql/index.js +105 -0
  27. package/dist/src/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.d.ts +2 -0
  28. package/dist/src/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.js +72 -0
  29. package/dist/src/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.d.ts +3 -0
  30. package/dist/src/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.js +34 -0
  31. package/dist/src/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.d.ts +3 -0
  32. package/dist/src/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.js +95 -0
  33. package/dist/src/db/psql/migrations/20250108092439-update-batch-model-fields.d.ts +2 -0
  34. package/dist/src/db/psql/migrations/20250108092439-update-batch-model-fields.js +39 -0
  35. package/dist/src/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.d.ts +3 -0
  36. package/dist/src/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.js +103 -0
  37. package/dist/src/db/psql/migrations/20250211071743-add-action-user-has-histroy.d.ts +3 -0
  38. package/dist/src/db/psql/migrations/20250211071743-add-action-user-has-histroy.js +77 -0
  39. package/dist/src/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.d.ts +3 -0
  40. package/dist/src/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.js +81 -0
  41. package/dist/src/db/psql/migrations/20250214072626-add-middlename-user.d.ts +3 -0
  42. package/dist/src/db/psql/migrations/20250214072626-add-middlename-user.js +81 -0
  43. package/dist/src/db/psql/migrations/20250224085333-add-apptype-in-user.d.ts +3 -0
  44. package/dist/src/db/psql/migrations/20250224085333-add-apptype-in-user.js +79 -0
  45. package/dist/src/db/psql/migrations/20250226053006-add-brouchure-in-institute.d.ts +3 -0
  46. package/dist/src/db/psql/migrations/20250226053006-add-brouchure-in-institute.js +81 -0
  47. package/dist/src/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.d.ts +3 -0
  48. package/dist/src/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.js +79 -0
  49. package/dist/src/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.d.ts +3 -0
  50. package/dist/src/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.js +113 -0
  51. package/dist/src/db/psql/migrations/20250306053557-add-shifyId-in-batch.d.ts +3 -0
  52. package/dist/src/db/psql/migrations/20250306053557-add-shifyId-in-batch.js +87 -0
  53. package/dist/src/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.d.ts +2 -0
  54. package/dist/src/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.js +44 -0
  55. package/dist/src/db/psql/migrations/20250402090653-add-user-area.d.ts +3 -0
  56. package/dist/src/db/psql/migrations/20250402090653-add-user-area.js +95 -0
  57. package/dist/src/db/psql/migrations/20250407094125-update-type-in-typeManagement.d.ts +2 -0
  58. package/dist/src/db/psql/migrations/20250407094125-update-type-in-typeManagement.js +65 -0
  59. package/dist/src/db/psql/migrations/20250409105229-add-user-type-in-role.d.ts +3 -0
  60. package/dist/src/db/psql/migrations/20250409105229-add-user-type-in-role.js +56 -0
  61. package/dist/src/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.d.ts +2 -0
  62. package/dist/src/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.js +17 -0
  63. package/dist/src/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.d.ts +3 -0
  64. package/dist/src/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.js +135 -0
  65. package/dist/src/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.d.ts +3 -0
  66. package/dist/src/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.js +87 -0
  67. package/dist/src/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.d.ts +3 -0
  68. package/dist/src/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.js +82 -0
  69. package/dist/src/db/psql/migrations/20250422114032-add-account.d.ts +3 -0
  70. package/dist/src/db/psql/migrations/20250422114032-add-account.js +87 -0
  71. package/dist/src/db/psql/migrations/20250423051841-add-master-leave-clm.d.ts +3 -0
  72. package/dist/src/db/psql/migrations/20250423051841-add-master-leave-clm.js +72 -0
  73. package/dist/src/db/psql/migrations/20250423064522-update-calender-enum.d.ts +2 -0
  74. package/dist/src/db/psql/migrations/20250423064522-update-calender-enum.js +35 -0
  75. package/dist/src/db/psql/migrations/20250423093827-update-institued-district.d.ts +3 -0
  76. package/dist/src/db/psql/migrations/20250423093827-update-institued-district.js +79 -0
  77. package/dist/src/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.d.ts +3 -0
  78. package/dist/src/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.js +35 -0
  79. package/dist/src/db/psql/migrations/20250424053841-update-fee-history-key.d.ts +2 -0
  80. package/dist/src/db/psql/migrations/20250424053841-update-fee-history-key.js +35 -0
  81. package/dist/src/db/psql/migrations/20250426070309-update-banner-clm-userType.d.ts +3 -0
  82. package/dist/src/db/psql/migrations/20250426070309-update-banner-clm-userType.js +56 -0
  83. package/dist/src/db/psql/migrations/20250505035157-update-fee-collection-clm-add.d.ts +3 -0
  84. package/dist/src/db/psql/migrations/20250505035157-update-fee-collection-clm-add.js +87 -0
  85. package/dist/src/db/psql/migrations/20250505082924-update-banner-clm.d.ts +3 -0
  86. package/dist/src/db/psql/migrations/20250505082924-update-banner-clm.js +19 -0
  87. package/dist/src/db/psql/migrations/20250505094616-about-as-clm-in-institued.d.ts +2 -0
  88. package/dist/src/db/psql/migrations/20250505094616-about-as-clm-in-institued.js +17 -0
  89. package/dist/src/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.d.ts +3 -0
  90. package/dist/src/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.js +81 -0
  91. package/dist/src/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.d.ts +3 -0
  92. package/dist/src/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.js +81 -0
  93. package/dist/src/db/psql/migrations/20250513061037-add-techer-clm-batch.d.ts +3 -0
  94. package/dist/src/db/psql/migrations/20250513061037-add-techer-clm-batch.js +89 -0
  95. package/dist/src/db/psql/migrations/20250514101801-add-slotId-workingShif.d.ts +3 -0
  96. package/dist/src/db/psql/migrations/20250514101801-add-slotId-workingShif.js +87 -0
  97. package/dist/src/db/psql/migrations/20250516062917-add-globalId-clm-user-model.d.ts +3 -0
  98. package/dist/src/db/psql/migrations/20250516062917-add-globalId-clm-user-model.js +81 -0
  99. package/dist/src/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.d.ts +3 -0
  100. package/dist/src/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.js +81 -0
  101. package/dist/src/db/psql/migrations/20250520061231-add-institued_mobile_person_data.d.ts +3 -0
  102. package/dist/src/db/psql/migrations/20250520061231-add-institued_mobile_person_data.js +117 -0
  103. package/dist/src/db/psql/migrations/20250522044729-add-institued_update_add_2.d.ts +2 -0
  104. package/dist/src/db/psql/migrations/20250522044729-add-institued_update_add_2.js +17 -0
  105. package/dist/src/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.d.ts +3 -0
  106. package/dist/src/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.js +99 -0
  107. package/dist/src/db/psql/migrations/20250526093322-add-appType_clm_in_module.d.ts +3 -0
  108. package/dist/src/db/psql/migrations/20250526093322-add-appType_clm_in_module.js +81 -0
  109. package/dist/src/db/psql/migrations/20250526094030-add-appType_clm_in_action.d.ts +3 -0
  110. package/dist/src/db/psql/migrations/20250526094030-add-appType_clm_in_action.js +81 -0
  111. package/dist/src/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.d.ts +3 -0
  112. package/dist/src/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.js +81 -0
  113. package/dist/src/db/psql/migrations/20250527065001-add-app-type-in-role-model.d.ts +3 -0
  114. package/dist/src/db/psql/migrations/20250527065001-add-app-type-in-role-model.js +58 -0
  115. package/dist/src/db/psql/migrations/20250528045906-add-module-type-to-notifications.d.ts +2 -0
  116. package/dist/src/db/psql/migrations/20250528045906-add-module-type-to-notifications.js +14 -0
  117. package/dist/src/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.d.ts +3 -0
  118. package/dist/src/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.js +108 -0
  119. package/dist/src/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.d.ts +3 -0
  120. package/dist/src/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.js +114 -0
  121. package/dist/src/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.d.ts +3 -0
  122. package/dist/src/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.js +81 -0
  123. package/dist/src/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.d.ts +3 -0
  124. package/dist/src/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.js +58 -0
  125. package/dist/src/db/psql/migrations/20250604121051-update-mobile-number-opstion.d.ts +3 -0
  126. package/dist/src/db/psql/migrations/20250604121051-update-mobile-number-opstion.js +16 -0
  127. package/dist/src/db/psql/migrations/20250617064159-update-type-management-jun-17.d.ts +2 -0
  128. package/dist/src/db/psql/migrations/20250617064159-update-type-management-jun-17.js +12 -0
  129. package/dist/src/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.d.ts +2 -0
  130. package/dist/src/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.js +13 -0
  131. package/dist/src/db/psql/migrations/20250701095321-add-clm-institute-pdfId.d.ts +3 -0
  132. package/dist/src/db/psql/migrations/20250701095321-add-clm-institute-pdfId.js +58 -0
  133. package/dist/src/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.d.ts +2 -0
  134. package/dist/src/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.js +13 -0
  135. package/dist/src/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.d.ts +2 -0
  136. package/dist/src/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.js +14 -0
  137. package/dist/src/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.d.ts +2 -0
  138. package/dist/src/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.js +13 -0
  139. package/dist/src/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.d.ts +2 -0
  140. package/dist/src/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.js +10 -0
  141. package/dist/src/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.d.ts +3 -0
  142. package/dist/src/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.js +87 -0
  143. package/dist/src/db/psql/migrations/20250718121251-add-clm-classroom-typeid.d.ts +3 -0
  144. package/dist/src/db/psql/migrations/20250718121251-add-clm-classroom-typeid.js +87 -0
  145. package/dist/src/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.d.ts +2 -0
  146. package/dist/src/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.js +23 -0
  147. package/dist/src/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.d.ts +2 -0
  148. package/dist/src/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.js +18 -0
  149. package/dist/src/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.d.ts +3 -0
  150. package/dist/src/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.js +79 -0
  151. package/dist/src/db/psql/migrations/20250722071836-add-title-to-floor-management.d.ts +2 -0
  152. package/dist/src/db/psql/migrations/20250722071836-add-title-to-floor-management.js +15 -0
  153. package/dist/src/db/psql/migrations/20250723150111-add-clm-batch-slotId.d.ts +3 -0
  154. package/dist/src/db/psql/migrations/20250723150111-add-clm-batch-slotId.js +87 -0
  155. package/dist/src/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.d.ts +2 -0
  156. package/dist/src/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.js +16 -0
  157. package/dist/src/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.d.ts +2 -0
  158. package/dist/src/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.js +25 -0
  159. package/dist/src/db/psql/migrations/20250730104844-update-unique-key-assessment-type.d.ts +2 -0
  160. package/dist/src/db/psql/migrations/20250730104844-update-unique-key-assessment-type.js +31 -0
  161. package/dist/src/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.d.ts +3 -0
  162. package/dist/src/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.js +63 -0
  163. package/dist/src/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.d.ts +2 -0
  164. package/dist/src/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.js +22 -0
  165. package/dist/src/db/psql/migrations/20250805115805-add-descriptions-to-lectures.d.ts +2 -0
  166. package/dist/src/db/psql/migrations/20250805115805-add-descriptions-to-lectures.js +13 -0
  167. package/dist/src/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.d.ts +3 -0
  168. package/dist/src/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.js +87 -0
  169. package/dist/src/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.d.ts +2 -0
  170. package/dist/src/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.js +13 -0
  171. package/dist/src/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.d.ts +2 -0
  172. package/dist/src/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.js +18 -0
  173. package/dist/src/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.d.ts +2 -0
  174. package/dist/src/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.js +16 -0
  175. package/dist/src/db/psql/migrations/20250829103203-remove-syllabus-composit-index.d.ts +2 -0
  176. package/dist/src/db/psql/migrations/20250829103203-remove-syllabus-composit-index.js +16 -0
  177. package/dist/src/db/psql/migrations/20250905132024-add-uuid-to-users.d.ts +2 -0
  178. package/dist/src/db/psql/migrations/20250905132024-add-uuid-to-users.js +13 -0
  179. package/dist/src/db/psql/migrations/20250908054025-userHasOffer_model_update.d.ts +3 -0
  180. package/dist/src/db/psql/migrations/20250908054025-userHasOffer_model_update.js +113 -0
  181. package/dist/src/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.d.ts +3 -0
  182. package/dist/src/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.js +71 -0
  183. package/dist/src/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.d.ts +2 -0
  184. package/dist/src/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.js +18 -0
  185. package/dist/src/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.d.ts +2 -0
  186. package/dist/src/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.js +40 -0
  187. package/dist/src/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.d.ts +2 -0
  188. package/dist/src/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.js +18 -0
  189. package/dist/src/db/psql/migrations/20250917135646-change-storageInBytes-to-float.d.ts +2 -0
  190. package/dist/src/db/psql/migrations/20250917135646-change-storageInBytes-to-float.js +18 -0
  191. package/dist/src/db/psql/seeders/20240809100759-add-countries-states-cities.d.ts +2 -0
  192. package/dist/src/db/psql/seeders/20240809100759-add-countries-states-cities.js +64 -0
  193. package/dist/src/db/psql/seeders/20250101122757-add-default-permissions-modules.d.ts +2 -0
  194. package/dist/src/db/psql/seeders/20250101122757-add-default-permissions-modules.js +160 -0
  195. package/dist/src/db/psql/seeders/Data/AcademicCalendarModule.d.ts +13 -0
  196. package/dist/src/db/psql/seeders/Data/AcademicCalendarModule.js +24 -0
  197. package/dist/src/db/psql/seeders/Data/AdministrativeStaffModule.d.ts +10 -0
  198. package/dist/src/db/psql/seeders/Data/AdministrativeStaffModule.js +38 -0
  199. package/dist/src/db/psql/seeders/Data/AnnouncementsModule.d.ts +13 -0
  200. package/dist/src/db/psql/seeders/Data/AnnouncementsModule.js +50 -0
  201. package/dist/src/db/psql/seeders/Data/AssetsModule.d.ts +10 -0
  202. package/dist/src/db/psql/seeders/Data/AssetsModule.js +37 -0
  203. package/dist/src/db/psql/seeders/Data/AttendanceModule.d.ts +13 -0
  204. package/dist/src/db/psql/seeders/Data/AttendanceModule.js +57 -0
  205. package/dist/src/db/psql/seeders/Data/BannerModule.d.ts +13 -0
  206. package/dist/src/db/psql/seeders/Data/BannerModule.js +24 -0
  207. package/dist/src/db/psql/seeders/Data/BatchModule.d.ts +13 -0
  208. package/dist/src/db/psql/seeders/Data/BatchModule.js +34 -0
  209. package/dist/src/db/psql/seeders/Data/BoardModule .d.ts +10 -0
  210. package/dist/src/db/psql/seeders/Data/BoardModule .js +18 -0
  211. package/dist/src/db/psql/seeders/Data/BookAssessmentsModule.d.ts +13 -0
  212. package/dist/src/db/psql/seeders/Data/BookAssessmentsModule.js +23 -0
  213. package/dist/src/db/psql/seeders/Data/CategoriesModule.d.ts +10 -0
  214. package/dist/src/db/psql/seeders/Data/CategoriesModule.js +18 -0
  215. package/dist/src/db/psql/seeders/Data/ClassroomModule.d.ts +13 -0
  216. package/dist/src/db/psql/seeders/Data/ClassroomModule.js +37 -0
  217. package/dist/src/db/psql/seeders/Data/DivisionModule.d.ts +13 -0
  218. package/dist/src/db/psql/seeders/Data/DivisionModule.js +25 -0
  219. package/dist/src/db/psql/seeders/Data/EventModule.d.ts +13 -0
  220. package/dist/src/db/psql/seeders/Data/EventModule.js +22 -0
  221. package/dist/src/db/psql/seeders/Data/ExamsAndResultsModule.d.ts +13 -0
  222. package/dist/src/db/psql/seeders/Data/ExamsAndResultsModule.js +113 -0
  223. package/dist/src/db/psql/seeders/Data/FacilityModule.d.ts +13 -0
  224. package/dist/src/db/psql/seeders/Data/FacilityModule.js +22 -0
  225. package/dist/src/db/psql/seeders/Data/FeeAndDiscountModule.d.ts +13 -0
  226. package/dist/src/db/psql/seeders/Data/FeeAndDiscountModule.js +239 -0
  227. package/dist/src/db/psql/seeders/Data/FeedBackModule.d.ts +13 -0
  228. package/dist/src/db/psql/seeders/Data/FeedBackModule.js +27 -0
  229. package/dist/src/db/psql/seeders/Data/FileModule.d.ts +10 -0
  230. package/dist/src/db/psql/seeders/Data/FileModule.js +38 -0
  231. package/dist/src/db/psql/seeders/Data/GenerateIdModule.d.ts +13 -0
  232. package/dist/src/db/psql/seeders/Data/GenerateIdModule.js +19 -0
  233. package/dist/src/db/psql/seeders/Data/HolidayModule.d.ts +13 -0
  234. package/dist/src/db/psql/seeders/Data/HolidayModule.js +22 -0
  235. package/dist/src/db/psql/seeders/Data/HomeworkModule.d.ts +13 -0
  236. package/dist/src/db/psql/seeders/Data/HomeworkModule.js +42 -0
  237. package/dist/src/db/psql/seeders/Data/IndexModule.d.ts +13 -0
  238. package/dist/src/db/psql/seeders/Data/IndexModule.js +97 -0
  239. package/dist/src/db/psql/seeders/Data/InquiryModule.d.ts +13 -0
  240. package/dist/src/db/psql/seeders/Data/InquiryModule.js +22 -0
  241. package/dist/src/db/psql/seeders/Data/InstituteModule.d.ts +13 -0
  242. package/dist/src/db/psql/seeders/Data/InstituteModule.js +63 -0
  243. package/dist/src/db/psql/seeders/Data/InventoryModule.d.ts +13 -0
  244. package/dist/src/db/psql/seeders/Data/InventoryModule.js +42 -0
  245. package/dist/src/db/psql/seeders/Data/JobApplyModule.d.ts +13 -0
  246. package/dist/src/db/psql/seeders/Data/JobApplyModule.js +22 -0
  247. package/dist/src/db/psql/seeders/Data/LectureModule.d.ts +10 -0
  248. package/dist/src/db/psql/seeders/Data/LectureModule.js +28 -0
  249. package/dist/src/db/psql/seeders/Data/ParentModule.d.ts +10 -0
  250. package/dist/src/db/psql/seeders/Data/ParentModule.js +38 -0
  251. package/dist/src/db/psql/seeders/Data/PayoutModule.d.ts +10 -0
  252. package/dist/src/db/psql/seeders/Data/PayoutModule.js +18 -0
  253. package/dist/src/db/psql/seeders/Data/PdcChequesModule.d.ts +13 -0
  254. package/dist/src/db/psql/seeders/Data/PdcChequesModule.js +27 -0
  255. package/dist/src/db/psql/seeders/Data/PhotosGalleryModule.d.ts +13 -0
  256. package/dist/src/db/psql/seeders/Data/PhotosGalleryModule.js +27 -0
  257. package/dist/src/db/psql/seeders/Data/PlannerModule.d.ts +10 -0
  258. package/dist/src/db/psql/seeders/Data/PlannerModule.js +18 -0
  259. package/dist/src/db/psql/seeders/Data/ProjectAssessmentsModule.d.ts +13 -0
  260. package/dist/src/db/psql/seeders/Data/ProjectAssessmentsModule.js +23 -0
  261. package/dist/src/db/psql/seeders/Data/ReplaceTeacherModule.d.ts +13 -0
  262. package/dist/src/db/psql/seeders/Data/ReplaceTeacherModule.js +22 -0
  263. package/dist/src/db/psql/seeders/Data/RoleModule.d.ts +13 -0
  264. package/dist/src/db/psql/seeders/Data/RoleModule.js +53 -0
  265. package/dist/src/db/psql/seeders/Data/RollNumberModule.d.ts +13 -0
  266. package/dist/src/db/psql/seeders/Data/RollNumberModule.js +22 -0
  267. package/dist/src/db/psql/seeders/Data/SchoolFeeModule.d.ts +10 -0
  268. package/dist/src/db/psql/seeders/Data/SchoolFeeModule.js +38 -0
  269. package/dist/src/db/psql/seeders/Data/SchoolModule.d.ts +13 -0
  270. package/dist/src/db/psql/seeders/Data/SchoolModule.js +63 -0
  271. package/dist/src/db/psql/seeders/Data/SchoolRegistration.d.ts +13 -0
  272. package/dist/src/db/psql/seeders/Data/SchoolRegistration.js +22 -0
  273. package/dist/src/db/psql/seeders/Data/SettingsModule.d.ts +10 -0
  274. package/dist/src/db/psql/seeders/Data/SettingsModule.js +28 -0
  275. package/dist/src/db/psql/seeders/Data/StaffTimingModule.d.ts +13 -0
  276. package/dist/src/db/psql/seeders/Data/StaffTimingModule.js +22 -0
  277. package/dist/src/db/psql/seeders/Data/StudentModule.d.ts +10 -0
  278. package/dist/src/db/psql/seeders/Data/StudentModule.js +18 -0
  279. package/dist/src/db/psql/seeders/Data/SubjectModule.d.ts +10 -0
  280. package/dist/src/db/psql/seeders/Data/SubjectModule.js +37 -0
  281. package/dist/src/db/psql/seeders/Data/SyllabusManagementModule.d.ts +13 -0
  282. package/dist/src/db/psql/seeders/Data/SyllabusManagementModule.js +25 -0
  283. package/dist/src/db/psql/seeders/Data/TeacherModule.d.ts +10 -0
  284. package/dist/src/db/psql/seeders/Data/TeacherModule.js +68 -0
  285. package/dist/src/db/psql/seeders/Data/TestimonialsModule.d.ts +13 -0
  286. package/dist/src/db/psql/seeders/Data/TestimonialsModule.js +27 -0
  287. package/dist/src/db/psql/seeders/Data/TimetableModule.d.ts +13 -0
  288. package/dist/src/db/psql/seeders/Data/TimetableModule.js +43 -0
  289. package/dist/src/db/psql/seeders/Data/To-doModule.d.ts +13 -0
  290. package/dist/src/db/psql/seeders/Data/To-doModule.js +27 -0
  291. package/dist/src/db/psql/seeders/Data/TypeManagementModule.d.ts +13 -0
  292. package/dist/src/db/psql/seeders/Data/TypeManagementModule.js +28 -0
  293. package/dist/src/db/psql/seeders/Data/UserModule.d.ts +13 -0
  294. package/dist/src/db/psql/seeders/Data/UserModule.js +266 -0
  295. package/dist/src/db/psql/seeders/Data/appType.d.ts +4 -0
  296. package/dist/src/db/psql/seeders/Data/appType.js +8 -0
  297. package/dist/src/helpers/s3Uploader.d.ts +3 -0
  298. package/dist/src/helpers/s3Uploader.js +53 -0
  299. package/dist/src/helpers/utils.d.ts +173 -0
  300. package/dist/src/helpers/utils.js +603 -0
  301. package/dist/src/index.d.ts +415 -0
  302. package/dist/src/index.js +415 -0
  303. package/dist/src/interfaces/academicCalendarInterface.d.ts +9 -0
  304. package/dist/src/interfaces/academicCalendarInterface.js +1 -0
  305. package/dist/src/interfaces/accountHasReceiptDetailsInterface.d.ts +17 -0
  306. package/dist/src/interfaces/accountHasReceiptDetailsInterface.js +1 -0
  307. package/dist/src/interfaces/announcementInterface.d.ts +19 -0
  308. package/dist/src/interfaces/announcementInterface.js +1 -0
  309. package/dist/src/interfaces/approvalRequestInterface.d.ts +14 -0
  310. package/dist/src/interfaces/approvalRequestInterface.js +1 -0
  311. package/dist/src/interfaces/areaInterface.js +1 -0
  312. package/dist/src/interfaces/attendanceInterface.d.ts +21 -0
  313. package/dist/src/interfaces/attendanceInterface.js +1 -0
  314. package/dist/src/interfaces/bankAccountDetailsInterface.d.ts +14 -0
  315. package/dist/src/interfaces/bankAccountDetailsInterface.js +1 -0
  316. package/dist/src/interfaces/bannerInterface.d.ts +15 -0
  317. package/dist/src/interfaces/bannerInterface.js +1 -0
  318. package/dist/src/interfaces/batchInterface.d.ts +18 -0
  319. package/dist/src/interfaces/batchInterface.js +1 -0
  320. package/dist/src/interfaces/batchSubjectBookAssessmentInterface.d.ts +9 -0
  321. package/dist/src/interfaces/batchSubjectBookAssessmentInterface.js +1 -0
  322. package/dist/src/interfaces/batchSubjectProjectAssessmentInterface.d.ts +12 -0
  323. package/dist/src/interfaces/batchSubjectProjectAssessmentInterface.js +1 -0
  324. package/dist/src/interfaces/blogInterface.d.ts +46 -0
  325. package/dist/src/interfaces/blogInterface.js +1 -0
  326. package/dist/src/interfaces/bookAssessmentDateInterface.d.ts +8 -0
  327. package/dist/src/interfaces/bookAssessmentDateInterface.js +1 -0
  328. package/dist/src/interfaces/careerInterface.d.ts +12 -0
  329. package/dist/src/interfaces/careerInterface.js +1 -0
  330. package/dist/src/interfaces/categoriesInterface.d.ts +8 -0
  331. package/dist/src/interfaces/categoriesInterface.js +1 -0
  332. package/dist/src/interfaces/certificatesHistoryInterface.d.ts +9 -0
  333. package/dist/src/interfaces/certificatesHistoryInterface.js +1 -0
  334. package/dist/src/interfaces/certificatesManagementInterface.d.ts +11 -0
  335. package/dist/src/interfaces/certificatesManagementInterface.js +1 -0
  336. package/dist/src/interfaces/cityInterface.d.ts +12 -0
  337. package/dist/src/interfaces/cityInterface.js +1 -0
  338. package/dist/src/interfaces/classRoomInterface.d.ts +13 -0
  339. package/dist/src/interfaces/classRoomInterface.js +1 -0
  340. package/dist/src/interfaces/cloudStorageInterface.d.ts +15 -0
  341. package/dist/src/interfaces/cloudStorageInterface.js +1 -0
  342. package/dist/src/interfaces/coinPurchaseOfferInterface.d.ts +16 -0
  343. package/dist/src/interfaces/coinPurchaseOfferInterface.js +1 -0
  344. package/dist/src/interfaces/columnInterface.d.ts +15 -0
  345. package/dist/src/interfaces/columnInterface.js +1 -0
  346. package/dist/src/interfaces/commanInterface.d.ts +52 -0
  347. package/dist/src/interfaces/commanInterface.js +1 -0
  348. package/dist/src/interfaces/contactFeedBackInterface.d.ts +13 -0
  349. package/dist/src/interfaces/contactFeedBackInterface.js +1 -0
  350. package/dist/src/interfaces/countryInterface.d.ts +11 -0
  351. package/dist/src/interfaces/countryInterface.js +1 -0
  352. package/dist/src/interfaces/courseHasVisitorsInterface.d.ts +7 -0
  353. package/dist/src/interfaces/courseHasVisitorsInterface.js +1 -0
  354. package/dist/src/interfaces/courseInterface.d.ts +18 -0
  355. package/dist/src/interfaces/courseInterface.js +1 -0
  356. package/dist/src/interfaces/dailyBookInterface.d.ts +14 -0
  357. package/dist/src/interfaces/dailyBookInterface.js +1 -0
  358. package/dist/src/interfaces/dashboardManagementInterface.d.ts +19 -0
  359. package/dist/src/interfaces/dashboardManagementInterface.js +1 -0
  360. package/dist/src/interfaces/driverInterface.d.ts +21 -0
  361. package/dist/src/interfaces/driverInterface.js +1 -0
  362. package/dist/src/interfaces/entityGroupInterface.d.ts +12 -0
  363. package/dist/src/interfaces/entityGroupInterface.js +1 -0
  364. package/dist/src/interfaces/eventInterface.d.ts +21 -0
  365. package/dist/src/interfaces/eventInterface.js +1 -0
  366. package/dist/src/interfaces/examGroupInterface.d.ts +30 -0
  367. package/dist/src/interfaces/examGroupInterface.js +1 -0
  368. package/dist/src/interfaces/examHasAnswerSheetInterface.d.ts +23 -0
  369. package/dist/src/interfaces/examHasAnswerSheetInterface.js +1 -0
  370. package/dist/src/interfaces/examInterface.d.ts +38 -0
  371. package/dist/src/interfaces/examInterface.js +1 -0
  372. package/dist/src/interfaces/facilityInterface.d.ts +9 -0
  373. package/dist/src/interfaces/facilityInterface.js +1 -0
  374. package/dist/src/interfaces/featureActionInterface.d.ts +17 -0
  375. package/dist/src/interfaces/featureActionInterface.js +1 -0
  376. package/dist/src/interfaces/feeHistoryDetailsInterface.d.ts +17 -0
  377. package/dist/src/interfaces/feeHistoryDetailsInterface.js +1 -0
  378. package/dist/src/interfaces/feeHistoryInterface.d.ts +21 -0
  379. package/dist/src/interfaces/feeHistoryInterface.js +1 -0
  380. package/dist/src/interfaces/feeReminderInterface.d.ts +13 -0
  381. package/dist/src/interfaces/feeReminderInterface.js +1 -0
  382. package/dist/src/interfaces/feeReminderSettingInterface.d.ts +10 -0
  383. package/dist/src/interfaces/feeReminderSettingInterface.js +1 -0
  384. package/dist/src/interfaces/feeReminderTypeInterface.d.ts +10 -0
  385. package/dist/src/interfaces/feeReminderTypeInterface.js +1 -0
  386. package/dist/src/interfaces/feeTypeHasTermsInterface.d.ts +12 -0
  387. package/dist/src/interfaces/feeTypeHasTermsInterface.js +1 -0
  388. package/dist/src/interfaces/feeTypeInterface.d.ts +13 -0
  389. package/dist/src/interfaces/feeTypeInterface.js +1 -0
  390. package/dist/src/interfaces/feedBackInterface.d.ts +19 -0
  391. package/dist/src/interfaces/feedBackInterface.js +1 -0
  392. package/dist/src/interfaces/feesCollectionInterface.d.ts +19 -0
  393. package/dist/src/interfaces/feesCollectionInterface.js +1 -0
  394. package/dist/src/interfaces/fileStorageInterface.d.ts +14 -0
  395. package/dist/src/interfaces/fileStorageInterface.js +1 -0
  396. package/dist/src/interfaces/floorManagementInterface.d.ts +9 -0
  397. package/dist/src/interfaces/floorManagementInterface.js +1 -0
  398. package/dist/src/interfaces/generateIdCardInterface.d.ts +8 -0
  399. package/dist/src/interfaces/generateIdCardInterface.js +1 -0
  400. package/dist/src/interfaces/greetingsInterface.d.ts +12 -0
  401. package/dist/src/interfaces/greetingsInterface.js +1 -0
  402. package/dist/src/interfaces/holidayInterface.d.ts +22 -0
  403. package/dist/src/interfaces/holidayInterface.js +1 -0
  404. package/dist/src/interfaces/homeworkInterface.d.ts +13 -0
  405. package/dist/src/interfaces/homeworkInterface.js +1 -0
  406. package/dist/src/interfaces/informationSupportInterface.d.ts +15 -0
  407. package/dist/src/interfaces/informationSupportInterface.js +1 -0
  408. package/dist/src/interfaces/inquiryInterface.d.ts +54 -0
  409. package/dist/src/interfaces/inquiryInterface.js +1 -0
  410. package/dist/src/interfaces/instituteEntityInterface.d.ts +16 -0
  411. package/dist/src/interfaces/instituteEntityInterface.js +1 -0
  412. package/dist/src/interfaces/instituteEntityTypeInterface.d.ts +10 -0
  413. package/dist/src/interfaces/instituteEntityTypeInterface.js +1 -0
  414. package/dist/src/interfaces/instituteInterface.d.ts +35 -0
  415. package/dist/src/interfaces/instituteInterface.js +1 -0
  416. package/dist/src/interfaces/instituteSubscriptionPlanInterface.d.ts +21 -0
  417. package/dist/src/interfaces/instituteSubscriptionPlanInterface.js +1 -0
  418. package/dist/src/interfaces/inventoryHistoryInterface.d.ts +17 -0
  419. package/dist/src/interfaces/inventoryHistoryInterface.js +1 -0
  420. package/dist/src/interfaces/inventoryInterface.d.ts +15 -0
  421. package/dist/src/interfaces/inventoryInterface.js +1 -0
  422. package/dist/src/interfaces/invoiceInterface.d.ts +31 -0
  423. package/dist/src/interfaces/invoiceInterface.js +1 -0
  424. package/dist/src/interfaces/jobApplyInterface.d.ts +35 -0
  425. package/dist/src/interfaces/jobApplyInterface.js +1 -0
  426. package/dist/src/interfaces/lectureHistoryInterface.d.ts +24 -0
  427. package/dist/src/interfaces/lectureHistoryInterface.js +1 -0
  428. package/dist/src/interfaces/lectureInterface.d.ts +26 -0
  429. package/dist/src/interfaces/lectureInterface.js +1 -0
  430. package/dist/src/interfaces/masterLeaveInterface.d.ts +13 -0
  431. package/dist/src/interfaces/masterLeaveInterface.js +1 -0
  432. package/dist/src/interfaces/moduleFeatureInterface.d.ts +16 -0
  433. package/dist/src/interfaces/moduleFeatureInterface.js +1 -0
  434. package/dist/src/interfaces/moduleInterface.d.ts +15 -0
  435. package/dist/src/interfaces/moduleInterface.js +1 -0
  436. package/dist/src/interfaces/offersInterface.d.ts +18 -0
  437. package/dist/src/interfaces/offersInterface.js +1 -0
  438. package/dist/src/interfaces/paymentTermsInterface.d.ts +15 -0
  439. package/dist/src/interfaces/paymentTermsInterface.js +1 -0
  440. package/dist/src/interfaces/pdcChequeInterface.d.ts +16 -0
  441. package/dist/src/interfaces/pdcChequeInterface.js +1 -0
  442. package/dist/src/interfaces/pdcHistoryInterface.d.ts +17 -0
  443. package/dist/src/interfaces/pdcHistoryInterface.js +1 -0
  444. package/dist/src/interfaces/photosGalleryInterface.d.ts +17 -0
  445. package/dist/src/interfaces/photosGalleryInterface.js +1 -0
  446. package/dist/src/interfaces/pincodeInterface.d.ts +15 -0
  447. package/dist/src/interfaces/pincodeInterface.js +1 -0
  448. package/dist/src/interfaces/plannerInterface.d.ts +32 -0
  449. package/dist/src/interfaces/plannerInterface.js +1 -0
  450. package/dist/src/interfaces/productInterface.d.ts +10 -0
  451. package/dist/src/interfaces/productInterface.js +1 -0
  452. package/dist/src/interfaces/projectAssessmentOptionInterface.d.ts +8 -0
  453. package/dist/src/interfaces/projectAssessmentOptionInterface.js +1 -0
  454. package/dist/src/interfaces/replaceTeacherInterface.d.ts +22 -0
  455. package/dist/src/interfaces/replaceTeacherInterface.js +1 -0
  456. package/dist/src/interfaces/roleInterface.d.ts +26 -0
  457. package/dist/src/interfaces/roleInterface.js +1 -0
  458. package/dist/src/interfaces/rulesRegulationInterface.d.ts +10 -0
  459. package/dist/src/interfaces/rulesRegulationInterface.js +1 -0
  460. package/dist/src/interfaces/schoolFeeCollectionInterface.d.ts +13 -0
  461. package/dist/src/interfaces/schoolFeeCollectionInterface.js +1 -0
  462. package/dist/src/interfaces/schoolFeeInterface.d.ts +21 -0
  463. package/dist/src/interfaces/schoolFeeInterface.js +1 -0
  464. package/dist/src/interfaces/schoolOfferInterface.d.ts +20 -0
  465. package/dist/src/interfaces/schoolOfferInterface.js +1 -0
  466. package/dist/src/interfaces/sendNotificationInerface.d.ts +20 -0
  467. package/dist/src/interfaces/sendNotificationInerface.js +1 -0
  468. package/dist/src/interfaces/slotInterface.d.ts +8 -0
  469. package/dist/src/interfaces/slotInterface.js +1 -0
  470. package/dist/src/interfaces/stateInterface.d.ts +11 -0
  471. package/dist/src/interfaces/stateInterface.js +1 -0
  472. package/dist/src/interfaces/subCategoriesInterface.d.ts +9 -0
  473. package/dist/src/interfaces/subCategoriesInterface.js +1 -0
  474. package/dist/src/interfaces/subjectHasFeeInterface.d.ts +7 -0
  475. package/dist/src/interfaces/subjectHasFeeInterface.js +1 -0
  476. package/dist/src/interfaces/subjectHasPayFeeHistoryInterface.d.ts +9 -0
  477. package/dist/src/interfaces/subjectHasPayFeeHistoryInterface.js +1 -0
  478. package/dist/src/interfaces/subjectIndexInterface.d.ts +48 -0
  479. package/dist/src/interfaces/subjectIndexInterface.js +1 -0
  480. package/dist/src/interfaces/subscriptionPlanInterface.d.ts +29 -0
  481. package/dist/src/interfaces/subscriptionPlanInterface.js +1 -0
  482. package/dist/src/interfaces/syllabusInterface.d.ts +9 -0
  483. package/dist/src/interfaces/syllabusInterface.js +1 -0
  484. package/dist/src/interfaces/taskManagementInterface.d.ts +24 -0
  485. package/dist/src/interfaces/taskManagementInterface.js +1 -0
  486. package/dist/src/interfaces/testimonialInterface.d.ts +12 -0
  487. package/dist/src/interfaces/testimonialInterface.js +1 -0
  488. package/dist/src/interfaces/toDoInterface.d.ts +11 -0
  489. package/dist/src/interfaces/toDoInterface.js +1 -0
  490. package/dist/src/interfaces/tokenInterface.d.ts +27 -0
  491. package/dist/src/interfaces/tokenInterface.js +1 -0
  492. package/dist/src/interfaces/tripInterface.d.ts +13 -0
  493. package/dist/src/interfaces/tripInterface.js +1 -0
  494. package/dist/src/interfaces/typeManagementInterface.d.ts +11 -0
  495. package/dist/src/interfaces/typeManagementInterface.js +1 -0
  496. package/dist/src/interfaces/uniqueNumberCounterInterface.d.ts +11 -0
  497. package/dist/src/interfaces/uniqueNumberCounterInterface.js +1 -0
  498. package/dist/src/interfaces/userBookAssessmentInterface.d.ts +10 -0
  499. package/dist/src/interfaces/userBookAssessmentInterface.js +1 -0
  500. package/dist/src/interfaces/userDetailsInterface.d.ts +122 -0
  501. package/dist/src/interfaces/userDetailsInterface.js +1 -0
  502. package/dist/src/interfaces/userFeeTypeByAccountInterface.d.ts +19 -0
  503. package/dist/src/interfaces/userFeeTypeByAccountInterface.js +1 -0
  504. package/dist/src/interfaces/userFeeTypeInterface.d.ts +16 -0
  505. package/dist/src/interfaces/userFeeTypeInterface.js +1 -0
  506. package/dist/src/interfaces/userHasAnnouncementInterface.d.ts +9 -0
  507. package/dist/src/interfaces/userHasAnnouncementInterface.js +1 -0
  508. package/dist/src/interfaces/userHasBatchInterface.d.ts +7 -0
  509. package/dist/src/interfaces/userHasBatchInterface.js +1 -0
  510. package/dist/src/interfaces/userHasCourseInterface.d.ts +13 -0
  511. package/dist/src/interfaces/userHasCourseInterface.js +1 -0
  512. package/dist/src/interfaces/userHasDeviceInterface.d.ts +10 -0
  513. package/dist/src/interfaces/userHasDeviceInterface.js +1 -0
  514. package/dist/src/interfaces/userHasFeeTermsInterface.d.ts +37 -0
  515. package/dist/src/interfaces/userHasFeeTermsInterface.js +1 -0
  516. package/dist/src/interfaces/userHasFileInterface.d.ts +11 -0
  517. package/dist/src/interfaces/userHasFileInterface.js +1 -0
  518. package/dist/src/interfaces/userHasHomeWorkInterface.d.ts +11 -0
  519. package/dist/src/interfaces/userHasHomeWorkInterface.js +1 -0
  520. package/dist/src/interfaces/userHasInventoryHistoryInterface.d.ts +20 -0
  521. package/dist/src/interfaces/userHasInventoryHistoryInterface.js +1 -0
  522. package/dist/src/interfaces/userHasInventoryInterface.d.ts +21 -0
  523. package/dist/src/interfaces/userHasInventoryInterface.js +1 -0
  524. package/dist/src/interfaces/userHasLeaveHistoryInterface.d.ts +16 -0
  525. package/dist/src/interfaces/userHasLeaveHistoryInterface.js +1 -0
  526. package/dist/src/interfaces/userHasLeaveInterface.d.ts +12 -0
  527. package/dist/src/interfaces/userHasLeaveInterface.js +1 -0
  528. package/dist/src/interfaces/userHasOfferInterface.d.ts +10 -0
  529. package/dist/src/interfaces/userHasOfferInterface.js +1 -0
  530. package/dist/src/interfaces/userHasParentInterface.d.ts +14 -0
  531. package/dist/src/interfaces/userHasParentInterface.js +1 -0
  532. package/dist/src/interfaces/userHasRoleInterface.d.ts +13 -0
  533. package/dist/src/interfaces/userHasRoleInterface.js +1 -0
  534. package/dist/src/interfaces/userHasRollNumberInterface.d.ts +8 -0
  535. package/dist/src/interfaces/userHasRollNumberInterface.js +1 -0
  536. package/dist/src/interfaces/userHasStorageInterface.d.ts +11 -0
  537. package/dist/src/interfaces/userHasStorageInterface.js +1 -0
  538. package/dist/src/interfaces/userHasSubjectFeeInterface.d.ts +9 -0
  539. package/dist/src/interfaces/userHasSubjectFeeInterface.js +1 -0
  540. package/dist/src/interfaces/userInstituteMetaInterface.d.ts +39 -0
  541. package/dist/src/interfaces/userInstituteMetaInterface.js +1 -0
  542. package/dist/src/interfaces/userInterface.d.ts +44 -0
  543. package/dist/src/interfaces/userInterface.js +1 -0
  544. package/dist/src/interfaces/userLeaveRequestInterface.d.ts +15 -0
  545. package/dist/src/interfaces/userLeaveRequestInterface.js +1 -0
  546. package/dist/src/interfaces/userMetaInterface.d.ts +13 -0
  547. package/dist/src/interfaces/userMetaInterface.js +1 -0
  548. package/dist/src/interfaces/userPayoutDetailsInterface.d.ts +14 -0
  549. package/dist/src/interfaces/userPayoutDetailsInterface.js +1 -0
  550. package/dist/src/interfaces/userPayoutHistoryInterface.d.ts +18 -0
  551. package/dist/src/interfaces/userPayoutHistoryInterface.js +1 -0
  552. package/dist/src/interfaces/userPayoutInterface.d.ts +12 -0
  553. package/dist/src/interfaces/userPayoutInterface.js +1 -0
  554. package/dist/src/interfaces/userProjectAssessmentOptionInterface.d.ts +10 -0
  555. package/dist/src/interfaces/userProjectAssessmentOptionInterface.js +1 -0
  556. package/dist/src/interfaces/userRequiredStepsInterface.d.ts +9 -0
  557. package/dist/src/interfaces/userRequiredStepsInterface.js +1 -0
  558. package/dist/src/interfaces/userSchoolMetaInterface.d.ts +115 -0
  559. package/dist/src/interfaces/userSchoolMetaInterface.js +1 -0
  560. package/dist/src/interfaces/vehicleInterface.d.ts +11 -0
  561. package/dist/src/interfaces/vehicleInterface.js +1 -0
  562. package/dist/src/interfaces/vendorManagementInterface.d.ts +19 -0
  563. package/dist/src/interfaces/vendorManagementInterface.js +1 -0
  564. package/dist/src/interfaces/videoAnalystInterface.d.ts +37 -0
  565. package/dist/src/interfaces/videoAnalystInterface.js +1 -0
  566. package/dist/src/interfaces/walletHistoryInterface.d.ts +15 -0
  567. package/dist/src/interfaces/walletHistoryInterface.js +1 -0
  568. package/dist/src/interfaces/walletInterface.d.ts +10 -0
  569. package/dist/src/interfaces/walletInterface.js +1 -0
  570. package/dist/src/interfaces/walletTransactionInterface.d.ts +34 -0
  571. package/dist/src/interfaces/walletTransactionInterface.js +1 -0
  572. package/dist/src/interfaces/workingDayInterface.d.ts +11 -0
  573. package/dist/src/interfaces/workingDayInterface.js +1 -0
  574. package/dist/src/interfaces/workingShiftInterface.d.ts +12 -0
  575. package/dist/src/interfaces/workingShiftInterface.js +1 -0
  576. package/dist/src/models/mongodb/approvalRequestModel.d.ts +4 -0
  577. package/dist/src/models/mongodb/approvalRequestModel.js +61 -0
  578. package/dist/src/models/mongodb/attendanceModel.d.ts +4 -0
  579. package/dist/src/models/mongodb/attendanceModel.js +140 -0
  580. package/dist/src/models/mongodb/blogModel.d.ts +4 -0
  581. package/dist/src/models/mongodb/blogModel.js +56 -0
  582. package/dist/src/models/mongodb/careerModel.d.ts +4 -0
  583. package/dist/src/models/mongodb/careerModel.js +48 -0
  584. package/dist/src/models/mongodb/certificatesHistoryModel.d.ts +4 -0
  585. package/dist/src/models/mongodb/certificatesHistoryModel.js +23 -0
  586. package/dist/src/models/mongodb/certificatesManagementModel.d.ts +4 -0
  587. package/dist/src/models/mongodb/certificatesManagementModel.js +32 -0
  588. package/dist/src/models/mongodb/columnModel.d.ts +4 -0
  589. package/dist/src/models/mongodb/columnModel.js +40 -0
  590. package/dist/src/models/mongodb/dailyBookModel.d.ts +4 -0
  591. package/dist/src/models/mongodb/dailyBookModel.js +53 -0
  592. package/dist/src/models/mongodb/dashboardManagementModel.d.ts +4 -0
  593. package/dist/src/models/mongodb/dashboardManagementModel.js +76 -0
  594. package/dist/src/models/mongodb/eventModel.d.ts +4 -0
  595. package/dist/src/models/mongodb/eventModel.js +126 -0
  596. package/dist/src/models/mongodb/examGroupModel.d.ts +4 -0
  597. package/dist/src/models/mongodb/examGroupModel.js +255 -0
  598. package/dist/src/models/mongodb/examHasAnswerSheetModel.d.ts +4 -0
  599. package/dist/src/models/mongodb/examHasAnswerSheetModel.js +95 -0
  600. package/dist/src/models/mongodb/examModel.d.ts +4 -0
  601. package/dist/src/models/mongodb/examModel.js +229 -0
  602. package/dist/src/models/mongodb/feeReminderTypeModel.d.ts +4 -0
  603. package/dist/src/models/mongodb/feeReminderTypeModel.js +38 -0
  604. package/dist/src/models/mongodb/feedBackModel.d.ts +4 -0
  605. package/dist/src/models/mongodb/feedBackModel.js +76 -0
  606. package/dist/src/models/mongodb/generateIdCardModel.d.ts +4 -0
  607. package/dist/src/models/mongodb/generateIdCardModel.js +20 -0
  608. package/dist/src/models/mongodb/holidayModel.d.ts +4 -0
  609. package/dist/src/models/mongodb/holidayModel.js +134 -0
  610. package/dist/src/models/mongodb/index.d.ts +2 -0
  611. package/dist/src/models/mongodb/index.js +19 -0
  612. package/dist/src/models/mongodb/informationSupportModel.d.ts +4 -0
  613. package/dist/src/models/mongodb/informationSupportModel.js +61 -0
  614. package/dist/src/models/mongodb/inquiryModel.d.ts +4 -0
  615. package/dist/src/models/mongodb/inquiryModel.js +148 -0
  616. package/dist/src/models/mongodb/invoiceModel.d.ts +4 -0
  617. package/dist/src/models/mongodb/invoiceModel.js +99 -0
  618. package/dist/src/models/mongodb/jobApplyModel.d.ts +4 -0
  619. package/dist/src/models/mongodb/jobApplyModel.js +116 -0
  620. package/dist/src/models/mongodb/photosGalleryModel.d.ts +4 -0
  621. package/dist/src/models/mongodb/photosGalleryModel.js +51 -0
  622. package/dist/src/models/mongodb/plannerModel.d.ts +4 -0
  623. package/dist/src/models/mongodb/plannerModel.js +139 -0
  624. package/dist/src/models/mongodb/plugin/addDefaultAttributesPlugin.d.ts +2 -0
  625. package/dist/src/models/mongodb/plugin/addDefaultAttributesPlugin.js +60 -0
  626. package/dist/src/models/mongodb/plugin/transformIdInQueryPlugin.d.ts +3 -0
  627. package/dist/src/models/mongodb/plugin/transformIdInQueryPlugin.js +59 -0
  628. package/dist/src/models/mongodb/plugin/transformIdInResponsePlugin.d.ts +3 -0
  629. package/dist/src/models/mongodb/plugin/transformIdInResponsePlugin.js +60 -0
  630. package/dist/src/models/mongodb/replaceTeacherModel.d.ts +4 -0
  631. package/dist/src/models/mongodb/replaceTeacherModel.js +75 -0
  632. package/dist/src/models/mongodb/schoolFeeModel.d.ts +4 -0
  633. package/dist/src/models/mongodb/schoolFeeModel.js +140 -0
  634. package/dist/src/models/mongodb/subjectIndexModel.d.ts +4 -0
  635. package/dist/src/models/mongodb/subjectIndexModel.js +629 -0
  636. package/dist/src/models/mongodb/subscriptionPlanModel.d.ts +4 -0
  637. package/dist/src/models/mongodb/subscriptionPlanModel.js +98 -0
  638. package/dist/src/models/mongodb/taskManagementModel.d.ts +4 -0
  639. package/dist/src/models/mongodb/taskManagementModel.js +129 -0
  640. package/dist/src/models/mongodb/uniqueNumberCounterModel.d.ts +4 -0
  641. package/dist/src/models/mongodb/uniqueNumberCounterModel.js +48 -0
  642. package/dist/src/models/mongodb/userDetailsModel.d.ts +5 -0
  643. package/dist/src/models/mongodb/userDetailsModel.js +473 -0
  644. package/dist/src/models/mongodb/userDoc.d.ts +10 -0
  645. package/dist/src/models/mongodb/userDoc.js +6 -0
  646. package/dist/src/models/mongodb/userInstituteMetaModel.d.ts +4 -0
  647. package/dist/src/models/mongodb/userInstituteMetaModel.js +177 -0
  648. package/dist/src/models/mongodb/userSchoolMetaModel.d.ts +7 -0
  649. package/dist/src/models/mongodb/userSchoolMetaModel.js +547 -0
  650. package/dist/src/models/mongodb/videoAnalystModel.d.ts +4 -0
  651. package/dist/src/models/mongodb/videoAnalystModel.js +45 -0
  652. package/dist/src/models/mongodb/walletTransactionModel.d.ts +4 -0
  653. package/dist/src/models/mongodb/walletTransactionModel.js +128 -0
  654. package/dist/src/models/psql/SubCategoriesModel.d.ts +17 -0
  655. package/dist/src/models/psql/SubCategoriesModel.js +97 -0
  656. package/dist/src/models/psql/academicCalendarModel.d.ts +18 -0
  657. package/dist/src/models/psql/academicCalendarModel.js +89 -0
  658. package/dist/src/models/psql/accountHasReceiptDetailsModel.d.ts +26 -0
  659. package/dist/src/models/psql/accountHasReceiptDetailsModel.js +140 -0
  660. package/dist/src/models/psql/announcementModel.d.ts +28 -0
  661. package/dist/src/models/psql/announcementModel.js +193 -0
  662. package/dist/src/models/psql/areaModel.d.ts +9 -0
  663. package/dist/src/models/psql/areaModel.js +35 -0
  664. package/dist/src/models/psql/bankAccountDetailsModel.d.ts +23 -0
  665. package/dist/src/models/psql/bankAccountDetailsModel.js +95 -0
  666. package/dist/src/models/psql/bannerModel.d.ts +24 -0
  667. package/dist/src/models/psql/bannerModel.js +111 -0
  668. package/dist/src/models/psql/batchModel.d.ts +27 -0
  669. package/dist/src/models/psql/batchModel.js +217 -0
  670. package/dist/src/models/psql/batchSubjectBookAssessmentModel.d.ts +18 -0
  671. package/dist/src/models/psql/batchSubjectBookAssessmentModel.js +151 -0
  672. package/dist/src/models/psql/batchSubjectProjectAssessmentModel.d.ts +21 -0
  673. package/dist/src/models/psql/batchSubjectProjectAssessmentModel.js +149 -0
  674. package/dist/src/models/psql/bookAssessmentDateModel.d.ts +17 -0
  675. package/dist/src/models/psql/bookAssessmentDateModel.js +82 -0
  676. package/dist/src/models/psql/categoriesModel.d.ts +17 -0
  677. package/dist/src/models/psql/categoriesModel.js +75 -0
  678. package/dist/src/models/psql/cityModel.d.ts +13 -0
  679. package/dist/src/models/psql/cityModel.js +67 -0
  680. package/dist/src/models/psql/classRoomModel.d.ts +22 -0
  681. package/dist/src/models/psql/classRoomModel.js +121 -0
  682. package/dist/src/models/psql/cloudStorageModel.d.ts +24 -0
  683. package/dist/src/models/psql/cloudStorageModel.js +92 -0
  684. package/dist/src/models/psql/coinPurchaseOfferModel.d.ts +25 -0
  685. package/dist/src/models/psql/coinPurchaseOfferModel.js +98 -0
  686. package/dist/src/models/psql/contactFeedBackModel.d.ts +22 -0
  687. package/dist/src/models/psql/contactFeedBackModel.js +115 -0
  688. package/dist/src/models/psql/countryModel.d.ts +14 -0
  689. package/dist/src/models/psql/countryModel.js +41 -0
  690. package/dist/src/models/psql/courseHasVisitorsModel.d.ts +16 -0
  691. package/dist/src/models/psql/courseHasVisitorsModel.js +66 -0
  692. package/dist/src/models/psql/courseModel.d.ts +27 -0
  693. package/dist/src/models/psql/courseModel.js +131 -0
  694. package/dist/src/models/psql/driverModel.d.ts +30 -0
  695. package/dist/src/models/psql/driverModel.js +158 -0
  696. package/dist/src/models/psql/entityGroupModel.d.ts +21 -0
  697. package/dist/src/models/psql/entityGroupModel.js +95 -0
  698. package/dist/src/models/psql/facilityModel.d.ts +18 -0
  699. package/dist/src/models/psql/facilityModel.js +115 -0
  700. package/dist/src/models/psql/featureActionModel.d.ts +22 -0
  701. package/dist/src/models/psql/featureActionModel.js +90 -0
  702. package/dist/src/models/psql/feeHistoryDetailsModel.d.ts +26 -0
  703. package/dist/src/models/psql/feeHistoryDetailsModel.js +181 -0
  704. package/dist/src/models/psql/feeHistoryModel.d.ts +30 -0
  705. package/dist/src/models/psql/feeHistoryModel.js +329 -0
  706. package/dist/src/models/psql/feeReminderModel.d.ts +22 -0
  707. package/dist/src/models/psql/feeReminderModel.js +234 -0
  708. package/dist/src/models/psql/feeReminderSettingModel.d.ts +19 -0
  709. package/dist/src/models/psql/feeReminderSettingModel.js +85 -0
  710. package/dist/src/models/psql/feeTypeHasTermsModel.d.ts +21 -0
  711. package/dist/src/models/psql/feeTypeHasTermsModel.js +97 -0
  712. package/dist/src/models/psql/feeTypeModel.d.ts +22 -0
  713. package/dist/src/models/psql/feeTypeModel.js +120 -0
  714. package/dist/src/models/psql/feesCollectionModel.d.ts +28 -0
  715. package/dist/src/models/psql/feesCollectionModel.js +227 -0
  716. package/dist/src/models/psql/fileStorageModel.d.ts +6 -0
  717. package/dist/src/models/psql/fileStorageModel.js +81 -0
  718. package/dist/src/models/psql/floorManagementModel.d.ts +18 -0
  719. package/dist/src/models/psql/floorManagementModel.js +85 -0
  720. package/dist/src/models/psql/greetingsModel.d.ts +21 -0
  721. package/dist/src/models/psql/greetingsModel.js +113 -0
  722. package/dist/src/models/psql/homeWorkModel.d.ts +22 -0
  723. package/dist/src/models/psql/homeWorkModel.js +123 -0
  724. package/dist/src/models/psql/index.d.ts +4 -0
  725. package/dist/src/models/psql/index.js +80 -0
  726. package/dist/src/models/psql/instituteEntityModel.d.ts +25 -0
  727. package/dist/src/models/psql/instituteEntityModel.js +126 -0
  728. package/dist/src/models/psql/instituteEntityTypeModel.d.ts +19 -0
  729. package/dist/src/models/psql/instituteEntityTypeModel.js +69 -0
  730. package/dist/src/models/psql/instituteModel.d.ts +44 -0
  731. package/dist/src/models/psql/instituteModel.js +235 -0
  732. package/dist/src/models/psql/instituteSubscriptionPlanModel.d.ts +33 -0
  733. package/dist/src/models/psql/instituteSubscriptionPlanModel.js +181 -0
  734. package/dist/src/models/psql/inventoryHistoryModel.d.ts +26 -0
  735. package/dist/src/models/psql/inventoryHistoryModel.js +154 -0
  736. package/dist/src/models/psql/inventoryModel.d.ts +24 -0
  737. package/dist/src/models/psql/inventoryModel.js +127 -0
  738. package/dist/src/models/psql/lectureHistoryModel.d.ts +32 -0
  739. package/dist/src/models/psql/lectureHistoryModel.js +218 -0
  740. package/dist/src/models/psql/lectureModel.d.ts +34 -0
  741. package/dist/src/models/psql/lectureModel.js +480 -0
  742. package/dist/src/models/psql/masterLeaveModel.d.ts +22 -0
  743. package/dist/src/models/psql/masterLeaveModel.js +127 -0
  744. package/dist/src/models/psql/moduleFeatureModel.d.ts +21 -0
  745. package/dist/src/models/psql/moduleFeatureModel.js +93 -0
  746. package/dist/src/models/psql/moduleModel.d.ts +20 -0
  747. package/dist/src/models/psql/moduleModel.js +96 -0
  748. package/dist/src/models/psql/offerModel.d.ts +27 -0
  749. package/dist/src/models/psql/offerModel.js +139 -0
  750. package/dist/src/models/psql/paymentTermsModel.d.ts +17 -0
  751. package/dist/src/models/psql/paymentTermsModel.js +109 -0
  752. package/dist/src/models/psql/pdcChequeModel.d.ts +25 -0
  753. package/dist/src/models/psql/pdcChequeModel.js +133 -0
  754. package/dist/src/models/psql/pdcHistoryModel.d.ts +26 -0
  755. package/dist/src/models/psql/pdcHistoryModel.js +147 -0
  756. package/dist/src/models/psql/pincodeModel.d.ts +23 -0
  757. package/dist/src/models/psql/pincodeModel.js +74 -0
  758. package/dist/src/models/psql/productModel.d.ts +19 -0
  759. package/dist/src/models/psql/productModel.js +119 -0
  760. package/dist/src/models/psql/projectAssessmentOptionModel.d.ts +17 -0
  761. package/dist/src/models/psql/projectAssessmentOptionModel.js +85 -0
  762. package/dist/src/models/psql/roleModel.d.ts +22 -0
  763. package/dist/src/models/psql/roleModel.js +92 -0
  764. package/dist/src/models/psql/rulesRegulationModel.d.ts +19 -0
  765. package/dist/src/models/psql/rulesRegulationModel.js +67 -0
  766. package/dist/src/models/psql/schoolFeeCollectionModel.d.ts +22 -0
  767. package/dist/src/models/psql/schoolFeeCollectionModel.js +151 -0
  768. package/dist/src/models/psql/schoolOfferModel.d.ts +29 -0
  769. package/dist/src/models/psql/schoolOfferModel.js +162 -0
  770. package/dist/src/models/psql/sendNotificationModel.d.ts +22 -0
  771. package/dist/src/models/psql/sendNotificationModel.js +112 -0
  772. package/dist/src/models/psql/slotModel.d.ts +17 -0
  773. package/dist/src/models/psql/slotModel.js +94 -0
  774. package/dist/src/models/psql/stateModel.d.ts +13 -0
  775. package/dist/src/models/psql/stateModel.js +53 -0
  776. package/dist/src/models/psql/subjectHasFeeModel.d.ts +16 -0
  777. package/dist/src/models/psql/subjectHasFeeModel.js +73 -0
  778. package/dist/src/models/psql/subjectHasPayFeeHistoryModel.d.ts +18 -0
  779. package/dist/src/models/psql/subjectHasPayFeeHistoryModel.js +104 -0
  780. package/dist/src/models/psql/syllabusModel.d.ts +18 -0
  781. package/dist/src/models/psql/syllabusModel.js +120 -0
  782. package/dist/src/models/psql/testimonialModel.d.ts +21 -0
  783. package/dist/src/models/psql/testimonialModel.js +157 -0
  784. package/dist/src/models/psql/toDoModel.d.ts +20 -0
  785. package/dist/src/models/psql/toDoModel.js +111 -0
  786. package/dist/src/models/psql/tokenModel.d.ts +15 -0
  787. package/dist/src/models/psql/tokenModel.js +35 -0
  788. package/dist/src/models/psql/tripModel.d.ts +22 -0
  789. package/dist/src/models/psql/tripModel.js +109 -0
  790. package/dist/src/models/psql/typeManagementModel.d.ts +20 -0
  791. package/dist/src/models/psql/typeManagementModel.js +117 -0
  792. package/dist/src/models/psql/userBookAssessmentModel.d.ts +19 -0
  793. package/dist/src/models/psql/userBookAssessmentModel.js +136 -0
  794. package/dist/src/models/psql/userFeeTypeByAccountModel.d.ts +22 -0
  795. package/dist/src/models/psql/userFeeTypeByAccountModel.js +179 -0
  796. package/dist/src/models/psql/userFeeTypeModel.d.ts +25 -0
  797. package/dist/src/models/psql/userFeeTypeModel.js +167 -0
  798. package/dist/src/models/psql/userHasAnnouncementModel.d.ts +18 -0
  799. package/dist/src/models/psql/userHasAnnouncementModel.js +103 -0
  800. package/dist/src/models/psql/userHasBatchModel.d.ts +16 -0
  801. package/dist/src/models/psql/userHasBatchModel.js +87 -0
  802. package/dist/src/models/psql/userHasCourseModel.d.ts +22 -0
  803. package/dist/src/models/psql/userHasCourseModel.js +111 -0
  804. package/dist/src/models/psql/userHasDeviceModel.d.ts +19 -0
  805. package/dist/src/models/psql/userHasDeviceModel.js +86 -0
  806. package/dist/src/models/psql/userHasFeeTermsModel.d.ts +27 -0
  807. package/dist/src/models/psql/userHasFeeTermsModel.js +197 -0
  808. package/dist/src/models/psql/userHasFileModel.d.ts +16 -0
  809. package/dist/src/models/psql/userHasFileModel.js +102 -0
  810. package/dist/src/models/psql/userHasHomeWorkModel.d.ts +19 -0
  811. package/dist/src/models/psql/userHasHomeWorkModel.js +114 -0
  812. package/dist/src/models/psql/userHasInventoryHistoryModel.d.ts +29 -0
  813. package/dist/src/models/psql/userHasInventoryHistoryModel.js +141 -0
  814. package/dist/src/models/psql/userHasInventoryModel.d.ts +30 -0
  815. package/dist/src/models/psql/userHasInventoryModel.js +143 -0
  816. package/dist/src/models/psql/userHasLeaveHistoryModel.d.ts +25 -0
  817. package/dist/src/models/psql/userHasLeaveHistoryModel.js +101 -0
  818. package/dist/src/models/psql/userHasLeaveModel.d.ts +21 -0
  819. package/dist/src/models/psql/userHasLeaveModel.js +116 -0
  820. package/dist/src/models/psql/userHasOfferModel.d.ts +19 -0
  821. package/dist/src/models/psql/userHasOfferModel.js +149 -0
  822. package/dist/src/models/psql/userHasParentModel.d.ts +23 -0
  823. package/dist/src/models/psql/userHasParentModel.js +130 -0
  824. package/dist/src/models/psql/userHasRoleModel.d.ts +18 -0
  825. package/dist/src/models/psql/userHasRoleModel.js +92 -0
  826. package/dist/src/models/psql/userHasRollNumberModel.d.ts +17 -0
  827. package/dist/src/models/psql/userHasRollNumberModel.js +85 -0
  828. package/dist/src/models/psql/userHasStorageModel.d.ts +20 -0
  829. package/dist/src/models/psql/userHasStorageModel.js +81 -0
  830. package/dist/src/models/psql/userHasSubjectFeeModel.d.ts +18 -0
  831. package/dist/src/models/psql/userHasSubjectFeeModel.js +81 -0
  832. package/dist/src/models/psql/userLeaveRequestModel.d.ts +24 -0
  833. package/dist/src/models/psql/userLeaveRequestModel.js +99 -0
  834. package/dist/src/models/psql/userModel.d.ts +55 -0
  835. package/dist/src/models/psql/userModel.js +387 -0
  836. package/dist/src/models/psql/userPayoutDetailsModel.d.ts +21 -0
  837. package/dist/src/models/psql/userPayoutDetailsModel.js +157 -0
  838. package/dist/src/models/psql/userPayoutHistoryModel.d.ts +27 -0
  839. package/dist/src/models/psql/userPayoutHistoryModel.js +150 -0
  840. package/dist/src/models/psql/userPayoutModel.d.ts +20 -0
  841. package/dist/src/models/psql/userPayoutModel.js +311 -0
  842. package/dist/src/models/psql/userProjectAssessmentOptionModel.d.ts +19 -0
  843. package/dist/src/models/psql/userProjectAssessmentOptionModel.js +121 -0
  844. package/dist/src/models/psql/userRequiredStepsModel.d.ts +17 -0
  845. package/dist/src/models/psql/userRequiredStepsModel.js +73 -0
  846. package/dist/src/models/psql/vehicleModel.d.ts +20 -0
  847. package/dist/src/models/psql/vehicleModel.js +105 -0
  848. package/dist/src/models/psql/vendorManagementModel.d.ts +28 -0
  849. package/dist/src/models/psql/vendorManagementModel.js +174 -0
  850. package/dist/src/models/psql/walletHistoryModel.d.ts +24 -0
  851. package/dist/src/models/psql/walletHistoryModel.js +97 -0
  852. package/dist/src/models/psql/walletModel.d.ts +19 -0
  853. package/dist/src/models/psql/walletModel.js +88 -0
  854. package/dist/src/models/psql/workingDayModel.d.ts +20 -0
  855. package/dist/src/models/psql/workingDayModel.js +74 -0
  856. package/dist/src/models/psql/workingShiftModel.d.ts +21 -0
  857. package/dist/src/models/psql/workingShiftModel.js +87 -0
  858. package/dist/src/services/Concrete/mongooseCommonService.d.ts +36 -0
  859. package/dist/src/services/Concrete/mongooseCommonService.js +104 -0
  860. package/dist/src/services/Concrete/sequelizeCommanService.d.ts +17 -0
  861. package/dist/src/services/Concrete/sequelizeCommanService.js +120 -0
  862. package/dist/src/services/Contracts/IMongooseCommonService.d.ts +36 -0
  863. package/dist/src/services/Contracts/IMongooseCommonService.js +1 -0
  864. package/dist/src/services/Contracts/ISequelizeCommonService.d.ts +21 -0
  865. package/dist/src/services/Contracts/ISequelizeCommonService.js +1 -0
  866. package/dist/src/types/academicCalendarType.d.ts +6 -0
  867. package/dist/src/types/academicCalendarType.js +1 -0
  868. package/dist/src/types/accountHasReceiptDetailsType.d.ts +7 -0
  869. package/dist/src/types/accountHasReceiptDetailsType.js +1 -0
  870. package/dist/src/types/announcementType.d.ts +6 -0
  871. package/dist/src/types/announcementType.js +1 -0
  872. package/dist/src/types/approveRequestType.d.ts +2 -0
  873. package/dist/src/types/approveRequestType.js +1 -0
  874. package/dist/src/types/areaType.d.ts +3 -0
  875. package/dist/src/types/areaType.js +1 -0
  876. package/dist/src/types/attendanceType.d.ts +2 -0
  877. package/dist/src/types/attendanceType.js +1 -0
  878. package/dist/src/types/bankAccountDetailsType.d.ts +3 -0
  879. package/dist/src/types/bankAccountDetailsType.js +1 -0
  880. package/dist/src/types/bannerType.d.ts +7 -0
  881. package/dist/src/types/bannerType.js +1 -0
  882. package/dist/src/types/batchSubjectBookAssessmentType.d.ts +7 -0
  883. package/dist/src/types/batchSubjectBookAssessmentType.js +1 -0
  884. package/dist/src/types/batchSubjectProjectAssessmentType.d.ts +7 -0
  885. package/dist/src/types/batchSubjectProjectAssessmentType.js +1 -0
  886. package/dist/src/types/batchType.d.ts +7 -0
  887. package/dist/src/types/batchType.js +1 -0
  888. package/dist/src/types/blogType.d.ts +2 -0
  889. package/dist/src/types/blogType.js +1 -0
  890. package/dist/src/types/bookAssessmentDateType.d.ts +7 -0
  891. package/dist/src/types/bookAssessmentDateType.js +1 -0
  892. package/dist/src/types/careerType.d.ts +2 -0
  893. package/dist/src/types/careerType.js +1 -0
  894. package/dist/src/types/categoriesType.d.ts +3 -0
  895. package/dist/src/types/categoriesType.js +1 -0
  896. package/dist/src/types/certificatesHistoryType.d.ts +2 -0
  897. package/dist/src/types/certificatesHistoryType.js +1 -0
  898. package/dist/src/types/certificatesManagementType.d.ts +2 -0
  899. package/dist/src/types/certificatesManagementType.js +1 -0
  900. package/dist/src/types/classRoomType.d.ts +3 -0
  901. package/dist/src/types/classRoomType.js +1 -0
  902. package/dist/src/types/cloudStorageType.d.ts +3 -0
  903. package/dist/src/types/cloudStorageType.js +1 -0
  904. package/dist/src/types/coinPurchaseOfferType.d.ts +3 -0
  905. package/dist/src/types/coinPurchaseOfferType.js +1 -0
  906. package/dist/src/types/commonType.d.ts +9 -0
  907. package/dist/src/types/commonType.js +1 -0
  908. package/dist/src/types/contactFeedBackType.d.ts +3 -0
  909. package/dist/src/types/contactFeedBackType.js +1 -0
  910. package/dist/src/types/courseHasVisitorsType.d.ts +2 -0
  911. package/dist/src/types/courseHasVisitorsType.js +1 -0
  912. package/dist/src/types/courseType.d.ts +2 -0
  913. package/dist/src/types/courseType.js +1 -0
  914. package/dist/src/types/dailyBookType.d.ts +2 -0
  915. package/dist/src/types/dailyBookType.js +1 -0
  916. package/dist/src/types/dashboardManagementType.d.ts +2 -0
  917. package/dist/src/types/dashboardManagementType.js +1 -0
  918. package/dist/src/types/driverType.d.ts +6 -0
  919. package/dist/src/types/driverType.js +1 -0
  920. package/dist/src/types/entityGroupType.d.ts +3 -0
  921. package/dist/src/types/entityGroupType.js +1 -0
  922. package/dist/src/types/eventType.d.ts +2 -0
  923. package/dist/src/types/eventType.js +1 -0
  924. package/dist/src/types/examGroupType.d.ts +6 -0
  925. package/dist/src/types/examGroupType.js +1 -0
  926. package/dist/src/types/examHasAnswerSheetType.d.ts +2 -0
  927. package/dist/src/types/examHasAnswerSheetType.js +1 -0
  928. package/dist/src/types/examType.d.ts +6 -0
  929. package/dist/src/types/examType.js +1 -0
  930. package/dist/src/types/facilityType.d.ts +3 -0
  931. package/dist/src/types/facilityType.js +1 -0
  932. package/dist/src/types/featureActionType.d.ts +3 -0
  933. package/dist/src/types/featureActionType.js +1 -0
  934. package/dist/src/types/feeHistoryDetailsType.d.ts +6 -0
  935. package/dist/src/types/feeHistoryDetailsType.js +1 -0
  936. package/dist/src/types/feeHistoryType.d.ts +18 -0
  937. package/dist/src/types/feeHistoryType.js +1 -0
  938. package/dist/src/types/feeReminderSettingType.d.ts +3 -0
  939. package/dist/src/types/feeReminderSettingType.js +1 -0
  940. package/dist/src/types/feeReminderType.d.ts +3 -0
  941. package/dist/src/types/feeReminderType.js +1 -0
  942. package/dist/src/types/feeReminderTypeType.d.ts +2 -0
  943. package/dist/src/types/feeReminderTypeType.js +1 -0
  944. package/dist/src/types/feeTypeHasTermsType.d.ts +3 -0
  945. package/dist/src/types/feeTypeHasTermsType.js +1 -0
  946. package/dist/src/types/feeTypeType.d.ts +3 -0
  947. package/dist/src/types/feeTypeType.js +1 -0
  948. package/dist/src/types/feedBackType.d.ts +2 -0
  949. package/dist/src/types/feedBackType.js +1 -0
  950. package/dist/src/types/feesCollectionType.d.ts +3 -0
  951. package/dist/src/types/feesCollectionType.js +1 -0
  952. package/dist/src/types/fileStorageType.d.ts +3 -0
  953. package/dist/src/types/fileStorageType.js +1 -0
  954. package/dist/src/types/floormanagementType.d.ts +3 -0
  955. package/dist/src/types/floormanagementType.js +1 -0
  956. package/dist/src/types/generateIdCardType.d.ts +2 -0
  957. package/dist/src/types/generateIdCardType.js +1 -0
  958. package/dist/src/types/greetingsType.d.ts +6 -0
  959. package/dist/src/types/greetingsType.js +1 -0
  960. package/dist/src/types/holidayType.d.ts +2 -0
  961. package/dist/src/types/holidayType.js +2 -0
  962. package/dist/src/types/homeWorkType.d.ts +3 -0
  963. package/dist/src/types/homeWorkType.js +1 -0
  964. package/dist/src/types/informationSupportType.d.ts +2 -0
  965. package/dist/src/types/informationSupportType.js +1 -0
  966. package/dist/src/types/inquiryType.d.ts +2 -0
  967. package/dist/src/types/inquiryType.js +1 -0
  968. package/dist/src/types/instituteEntityType.d.ts +6 -0
  969. package/dist/src/types/instituteEntityType.js +1 -0
  970. package/dist/src/types/instituteEntityTypeType.d.ts +3 -0
  971. package/dist/src/types/instituteEntityTypeType.js +1 -0
  972. package/dist/src/types/instituteSubscriptionPlanType.d.ts +3 -0
  973. package/dist/src/types/instituteSubscriptionPlanType.js +1 -0
  974. package/dist/src/types/instituteType.d.ts +3 -0
  975. package/dist/src/types/instituteType.js +1 -0
  976. package/dist/src/types/inventoryHistoryType.d.ts +3 -0
  977. package/dist/src/types/inventoryHistoryType.js +1 -0
  978. package/dist/src/types/inventoryType.d.ts +3 -0
  979. package/dist/src/types/inventoryType.js +1 -0
  980. package/dist/src/types/jobApply.d.ts +2 -0
  981. package/dist/src/types/jobApply.js +1 -0
  982. package/dist/src/types/lectureHistoryType.d.ts +6 -0
  983. package/dist/src/types/lectureHistoryType.js +1 -0
  984. package/dist/src/types/lectureType.d.ts +6 -0
  985. package/dist/src/types/lectureType.js +1 -0
  986. package/dist/src/types/masterLeaveType.d.ts +3 -0
  987. package/dist/src/types/masterLeaveType.js +1 -0
  988. package/dist/src/types/moduleFeatureType.d.ts +3 -0
  989. package/dist/src/types/moduleFeatureType.js +1 -0
  990. package/dist/src/types/moduleType.d.ts +3 -0
  991. package/dist/src/types/moduleType.js +1 -0
  992. package/dist/src/types/offerType.d.ts +3 -0
  993. package/dist/src/types/offerType.js +1 -0
  994. package/dist/src/types/paymentTermsType.d.ts +3 -0
  995. package/dist/src/types/paymentTermsType.js +2 -0
  996. package/dist/src/types/pdcChequeType.d.ts +6 -0
  997. package/dist/src/types/pdcChequeType.js +1 -0
  998. package/dist/src/types/pdcHistoryType.d.ts +2 -0
  999. package/dist/src/types/pdcHistoryType.js +1 -0
  1000. package/dist/src/types/photosGalleryType.d.ts +2 -0
  1001. package/dist/src/types/photosGalleryType.js +1 -0
  1002. package/dist/src/types/plannerType.d.ts +7 -0
  1003. package/dist/src/types/plannerType.js +1 -0
  1004. package/dist/src/types/productType.d.ts +3 -0
  1005. package/dist/src/types/productType.js +1 -0
  1006. package/dist/src/types/projectAssessmentOptionType.d.ts +7 -0
  1007. package/dist/src/types/projectAssessmentOptionType.js +1 -0
  1008. package/dist/src/types/roleType.d.ts +11 -0
  1009. package/dist/src/types/roleType.js +1 -0
  1010. package/dist/src/types/rulesRegulationType.d.ts +3 -0
  1011. package/dist/src/types/rulesRegulationType.js +1 -0
  1012. package/dist/src/types/schoolFeeCollectionType.d.ts +3 -0
  1013. package/dist/src/types/schoolFeeCollectionType.js +1 -0
  1014. package/dist/src/types/schoolFeeType.d.ts +3 -0
  1015. package/dist/src/types/schoolFeeType.js +1 -0
  1016. package/dist/src/types/schoolOfferType.d.ts +3 -0
  1017. package/dist/src/types/schoolOfferType.js +1 -0
  1018. package/dist/src/types/sendNotificationType.d.ts +3 -0
  1019. package/dist/src/types/sendNotificationType.js +1 -0
  1020. package/dist/src/types/slotType.d.ts +2 -0
  1021. package/dist/src/types/slotType.js +1 -0
  1022. package/dist/src/types/subCategoryType.d.ts +3 -0
  1023. package/dist/src/types/subCategoryType.js +1 -0
  1024. package/dist/src/types/subjectHasFeeType.d.ts +3 -0
  1025. package/dist/src/types/subjectHasFeeType.js +1 -0
  1026. package/dist/src/types/subjectHasPayFeeHistoryType.d.ts +3 -0
  1027. package/dist/src/types/subjectHasPayFeeHistoryType.js +1 -0
  1028. package/dist/src/types/subjectIndexType.d.ts +7 -0
  1029. package/dist/src/types/subjectIndexType.js +1 -0
  1030. package/dist/src/types/subscriptionPlanType.d.ts +2 -0
  1031. package/dist/src/types/subscriptionPlanType.js +1 -0
  1032. package/dist/src/types/syllabusType.d.ts +7 -0
  1033. package/dist/src/types/syllabusType.js +1 -0
  1034. package/dist/src/types/taskManagementType.d.ts +2 -0
  1035. package/dist/src/types/taskManagementType.js +1 -0
  1036. package/dist/src/types/testimonialType.d.ts +13 -0
  1037. package/dist/src/types/testimonialType.js +1 -0
  1038. package/dist/src/types/toDoType.d.ts +6 -0
  1039. package/dist/src/types/toDoType.js +1 -0
  1040. package/dist/src/types/tripType.d.ts +2 -0
  1041. package/dist/src/types/tripType.js +1 -0
  1042. package/dist/src/types/typeManagementType.d.ts +3 -0
  1043. package/dist/src/types/typeManagementType.js +1 -0
  1044. package/dist/src/types/uniqueNumberCounterType.d.ts +2 -0
  1045. package/dist/src/types/uniqueNumberCounterType.js +1 -0
  1046. package/dist/src/types/userBookAssessmentType.d.ts +7 -0
  1047. package/dist/src/types/userBookAssessmentType.js +1 -0
  1048. package/dist/src/types/userDetailsType.d.ts +2 -0
  1049. package/dist/src/types/userDetailsType.js +1 -0
  1050. package/dist/src/types/userFeeTypeByAccountType.d.ts +3 -0
  1051. package/dist/src/types/userFeeTypeByAccountType.js +1 -0
  1052. package/dist/src/types/userFeeTypeType.d.ts +6 -0
  1053. package/dist/src/types/userFeeTypeType.js +1 -0
  1054. package/dist/src/types/userHasAnnouncementType.d.ts +3 -0
  1055. package/dist/src/types/userHasAnnouncementType.js +1 -0
  1056. package/dist/src/types/userHasBatchType.d.ts +9 -0
  1057. package/dist/src/types/userHasBatchType.js +1 -0
  1058. package/dist/src/types/userHasCourseType.d.ts +3 -0
  1059. package/dist/src/types/userHasCourseType.js +1 -0
  1060. package/dist/src/types/userHasDeviceType.d.ts +3 -0
  1061. package/dist/src/types/userHasDeviceType.js +1 -0
  1062. package/dist/src/types/userHasFeeTermsType.d.ts +3 -0
  1063. package/dist/src/types/userHasFeeTermsType.js +1 -0
  1064. package/dist/src/types/userHasFileType.d.ts +3 -0
  1065. package/dist/src/types/userHasFileType.js +1 -0
  1066. package/dist/src/types/userHasHomeWorkType.d.ts +3 -0
  1067. package/dist/src/types/userHasHomeWorkType.js +1 -0
  1068. package/dist/src/types/userHasInventoryHistoryType.d.ts +3 -0
  1069. package/dist/src/types/userHasInventoryHistoryType.js +1 -0
  1070. package/dist/src/types/userHasInventoryType.d.ts +3 -0
  1071. package/dist/src/types/userHasInventoryType.js +1 -0
  1072. package/dist/src/types/userHasLeaveHistoryType.d.ts +3 -0
  1073. package/dist/src/types/userHasLeaveHistoryType.js +1 -0
  1074. package/dist/src/types/userHasLeaveType.d.ts +3 -0
  1075. package/dist/src/types/userHasLeaveType.js +1 -0
  1076. package/dist/src/types/userHasOffer.d.ts +3 -0
  1077. package/dist/src/types/userHasOffer.js +1 -0
  1078. package/dist/src/types/userHasParentType.d.ts +10 -0
  1079. package/dist/src/types/userHasParentType.js +1 -0
  1080. package/dist/src/types/userHasRoleType.d.ts +3 -0
  1081. package/dist/src/types/userHasRoleType.js +1 -0
  1082. package/dist/src/types/userHasRollNumberType.d.ts +3 -0
  1083. package/dist/src/types/userHasRollNumberType.js +1 -0
  1084. package/dist/src/types/userHasStorageType.d.ts +3 -0
  1085. package/dist/src/types/userHasStorageType.js +1 -0
  1086. package/dist/src/types/userHasSubjectFeeType.d.ts +3 -0
  1087. package/dist/src/types/userHasSubjectFeeType.js +1 -0
  1088. package/dist/src/types/userInstituteMetaType.d.ts +2 -0
  1089. package/dist/src/types/userInstituteMetaType.js +1 -0
  1090. package/dist/src/types/userLeaveRequestType.d.ts +3 -0
  1091. package/dist/src/types/userLeaveRequestType.js +1 -0
  1092. package/dist/src/types/userMetaType.d.ts +13 -0
  1093. package/dist/src/types/userMetaType.js +1 -0
  1094. package/dist/src/types/userPayoutDetailsType.d.ts +3 -0
  1095. package/dist/src/types/userPayoutDetailsType.js +1 -0
  1096. package/dist/src/types/userPayoutHistoryType.d.ts +3 -0
  1097. package/dist/src/types/userPayoutHistoryType.js +1 -0
  1098. package/dist/src/types/userPayoutType.d.ts +7 -0
  1099. package/dist/src/types/userPayoutType.js +1 -0
  1100. package/dist/src/types/userProjectAssessmentOptionType.d.ts +7 -0
  1101. package/dist/src/types/userProjectAssessmentOptionType.js +1 -0
  1102. package/dist/src/types/userRequiredStepsType.d.ts +3 -0
  1103. package/dist/src/types/userRequiredStepsType.js +1 -0
  1104. package/dist/src/types/userSchoolMetaType.d.ts +3 -0
  1105. package/dist/src/types/userSchoolMetaType.js +1 -0
  1106. package/dist/src/types/userType.d.ts +12 -0
  1107. package/dist/src/types/userType.js +1 -0
  1108. package/dist/src/types/vehicleType.d.ts +3 -0
  1109. package/dist/src/types/vehicleType.js +1 -0
  1110. package/dist/src/types/vendorType.d.ts +3 -0
  1111. package/dist/src/types/vendorType.js +1 -0
  1112. package/dist/src/types/videoAnalystType.d.ts +2 -0
  1113. package/dist/src/types/videoAnalystType.js +1 -0
  1114. package/dist/src/types/walletHistoryType.d.ts +3 -0
  1115. package/dist/src/types/walletHistoryType.js +1 -0
  1116. package/dist/src/types/walletTransactionType.d.ts +3 -0
  1117. package/dist/src/types/walletTransactionType.js +1 -0
  1118. package/dist/src/types/walletType.d.ts +3 -0
  1119. package/dist/src/types/walletType.js +1 -0
  1120. package/dist/src/types/workingDayType.d.ts +3 -0
  1121. package/dist/src/types/workingDayType.js +1 -0
  1122. package/dist/src/types/workingShiftType.d.ts +3 -0
  1123. package/dist/src/types/workingShiftType.js +1 -0
  1124. package/package.json +5 -4
  1125. package/dist/configs/aws.ts +0 -10
  1126. package/dist/configs/env.ts +0 -48
  1127. package/dist/configs/postgresConfig.js +0 -32
  1128. package/dist/constants/app.ts +0 -1046
  1129. package/dist/constants/defaultModelAttributes.ts +0 -26
  1130. package/dist/constants/errorMessages.ts +0 -1109
  1131. package/dist/constants/httpStatusCode.ts +0 -26
  1132. package/dist/constants/successMessages.ts +0 -758
  1133. package/dist/db/mongodb.ts +0 -19
  1134. package/dist/db/postgres.ts +0 -24
  1135. package/dist/db/psql/index.js +0 -108
  1136. package/dist/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.js +0 -84
  1137. package/dist/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.js +0 -41
  1138. package/dist/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.js +0 -105
  1139. package/dist/db/psql/migrations/20250108092439-update-batch-model-fields.js +0 -41
  1140. package/dist/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.js +0 -113
  1141. package/dist/db/psql/migrations/20250211071743-add-action-user-has-histroy.js +0 -87
  1142. package/dist/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.js +0 -91
  1143. package/dist/db/psql/migrations/20250214072626-add-middlename-user.js +0 -91
  1144. package/dist/db/psql/migrations/20250224085333-add-apptype-in-user.js +0 -89
  1145. package/dist/db/psql/migrations/20250226053006-add-brouchure-in-institute.js +0 -91
  1146. package/dist/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.js +0 -89
  1147. package/dist/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.js +0 -159
  1148. package/dist/db/psql/migrations/20250306053557-add-shifyId-in-batch.js +0 -97
  1149. package/dist/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.js +0 -51
  1150. package/dist/db/psql/migrations/20250402090653-add-user-area.js +0 -104
  1151. package/dist/db/psql/migrations/20250407094125-update-type-in-typeManagement.js +0 -88
  1152. package/dist/db/psql/migrations/20250409105229-add-user-type-in-role.js +0 -63
  1153. package/dist/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.js +0 -18
  1154. package/dist/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.js +0 -145
  1155. package/dist/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.js +0 -97
  1156. package/dist/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.js +0 -89
  1157. package/dist/db/psql/migrations/20250422114032-add-account.js +0 -97
  1158. package/dist/db/psql/migrations/20250423051841-add-master-leave-clm.js +0 -78
  1159. package/dist/db/psql/migrations/20250423064522-update-calender-enum.js +0 -42
  1160. package/dist/db/psql/migrations/20250423093827-update-institued-district.js +0 -88
  1161. package/dist/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.js +0 -44
  1162. package/dist/db/psql/migrations/20250424053841-update-fee-history-key.js +0 -40
  1163. package/dist/db/psql/migrations/20250426070309-update-banner-clm-userType.js +0 -63
  1164. package/dist/db/psql/migrations/20250505035157-update-fee-collection-clm-add.js +0 -97
  1165. package/dist/db/psql/migrations/20250505082924-update-banner-clm.js +0 -22
  1166. package/dist/db/psql/migrations/20250505094616-about-as-clm-in-institued.js +0 -19
  1167. package/dist/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.js +0 -90
  1168. package/dist/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.js +0 -90
  1169. package/dist/db/psql/migrations/20250513061037-add-techer-clm-batch.js +0 -99
  1170. package/dist/db/psql/migrations/20250514101801-add-slotId-workingShif.js +0 -97
  1171. package/dist/db/psql/migrations/20250516062917-add-globalId-clm-user-model.js +0 -90
  1172. package/dist/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.js +0 -90
  1173. package/dist/db/psql/migrations/20250520061231-add-institued_mobile_person_data.js +0 -126
  1174. package/dist/db/psql/migrations/20250522044729-add-institued_update_add_2.js +0 -19
  1175. package/dist/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.js +0 -108
  1176. package/dist/db/psql/migrations/20250526093322-add-appType_clm_in_module.js +0 -90
  1177. package/dist/db/psql/migrations/20250526094030-add-appType_clm_in_action.js +0 -90
  1178. package/dist/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.js +0 -90
  1179. package/dist/db/psql/migrations/20250527065001-add-app-type-in-role-model.js +0 -64
  1180. package/dist/db/psql/migrations/20250528045906-add-module-type-to-notifications.js +0 -16
  1181. package/dist/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.js +0 -119
  1182. package/dist/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.js +0 -119
  1183. package/dist/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.js +0 -90
  1184. package/dist/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.js +0 -63
  1185. package/dist/db/psql/migrations/20250604121051-update-mobile-number-opstion.js +0 -19
  1186. package/dist/db/psql/migrations/20250617064159-update-type-management-jun-17.js +0 -14
  1187. package/dist/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.js +0 -15
  1188. package/dist/db/psql/migrations/20250701095321-add-clm-institute-pdfId.js +0 -63
  1189. package/dist/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.js +0 -15
  1190. package/dist/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.js +0 -15
  1191. package/dist/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.js +0 -14
  1192. package/dist/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.js +0 -11
  1193. package/dist/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.js +0 -97
  1194. package/dist/db/psql/migrations/20250718121251-add-clm-classroom-typeid.js +0 -97
  1195. package/dist/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.js +0 -26
  1196. package/dist/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.js +0 -20
  1197. package/dist/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.js +0 -89
  1198. package/dist/db/psql/migrations/20250722071836-add-title-to-floor-management.js +0 -16
  1199. package/dist/db/psql/migrations/20250723150111-add-clm-batch-slotId.js +0 -97
  1200. package/dist/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.js +0 -18
  1201. package/dist/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.js +0 -27
  1202. package/dist/db/psql/migrations/20250730104844-update-unique-key-assessment-type.js +0 -34
  1203. package/dist/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.js +0 -73
  1204. package/dist/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.js +0 -25
  1205. package/dist/db/psql/migrations/20250805115805-add-descriptions-to-lectures.js +0 -14
  1206. package/dist/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.js +0 -97
  1207. package/dist/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.js +0 -14
  1208. package/dist/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.js +0 -20
  1209. package/dist/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.js +0 -18
  1210. package/dist/db/psql/migrations/20250829103203-remove-syllabus-composit-index.js +0 -18
  1211. package/dist/db/psql/migrations/20250905132024-add-uuid-to-users.js +0 -14
  1212. package/dist/db/psql/migrations/20250908054025-userHasOffer_model_update.js +0 -123
  1213. package/dist/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.js +0 -81
  1214. package/dist/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.js +0 -21
  1215. package/dist/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.js +0 -47
  1216. package/dist/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.js +0 -19
  1217. package/dist/db/psql/migrations/20250917135646-change-storageInBytes-to-float.js +0 -19
  1218. package/dist/db/psql/seeders/20240809100759-add-countries-states-cities.js +0 -73
  1219. package/dist/db/psql/seeders/20250101122757-add-default-permissions-modules.js +0 -188
  1220. package/dist/db/psql/seeders/Data/AcademicCalendarModule.js +0 -25
  1221. package/dist/db/psql/seeders/Data/AdministrativeStaffModule.js +0 -37
  1222. package/dist/db/psql/seeders/Data/AnnouncementsModule.js +0 -51
  1223. package/dist/db/psql/seeders/Data/AssetsModule.js +0 -37
  1224. package/dist/db/psql/seeders/Data/AttendanceModule.js +0 -58
  1225. package/dist/db/psql/seeders/Data/BannerModule.js +0 -25
  1226. package/dist/db/psql/seeders/Data/BatchModule.js +0 -35
  1227. package/dist/db/psql/seeders/Data/BoardModule .js +0 -18
  1228. package/dist/db/psql/seeders/Data/BookAssessmentsModule.js +0 -24
  1229. package/dist/db/psql/seeders/Data/CategoriesModule.js +0 -18
  1230. package/dist/db/psql/seeders/Data/ClassroomModule.js +0 -38
  1231. package/dist/db/psql/seeders/Data/DivisionModule.js +0 -26
  1232. package/dist/db/psql/seeders/Data/EventModule.js +0 -23
  1233. package/dist/db/psql/seeders/Data/ExamsAndResultsModule.js +0 -114
  1234. package/dist/db/psql/seeders/Data/FacilityModule.js +0 -23
  1235. package/dist/db/psql/seeders/Data/FeeAndDiscountModule.js +0 -241
  1236. package/dist/db/psql/seeders/Data/FeedBackModule.js +0 -28
  1237. package/dist/db/psql/seeders/Data/FileModule.js +0 -38
  1238. package/dist/db/psql/seeders/Data/GenerateIdModule.js +0 -20
  1239. package/dist/db/psql/seeders/Data/HolidayModule.js +0 -23
  1240. package/dist/db/psql/seeders/Data/HomeworkModule.js +0 -43
  1241. package/dist/db/psql/seeders/Data/IndexModule.js +0 -98
  1242. package/dist/db/psql/seeders/Data/InquiryModule.js +0 -23
  1243. package/dist/db/psql/seeders/Data/InstituteModule.js +0 -64
  1244. package/dist/db/psql/seeders/Data/InventoryModule.js +0 -43
  1245. package/dist/db/psql/seeders/Data/JobApplyModule.js +0 -23
  1246. package/dist/db/psql/seeders/Data/LectureModule.js +0 -28
  1247. package/dist/db/psql/seeders/Data/ParentModule.js +0 -38
  1248. package/dist/db/psql/seeders/Data/PayoutModule.js +0 -18
  1249. package/dist/db/psql/seeders/Data/PdcChequesModule.js +0 -28
  1250. package/dist/db/psql/seeders/Data/PhotosGalleryModule.js +0 -28
  1251. package/dist/db/psql/seeders/Data/PlannerModule.js +0 -18
  1252. package/dist/db/psql/seeders/Data/ProjectAssessmentsModule.js +0 -24
  1253. package/dist/db/psql/seeders/Data/ReplaceTeacherModule.js +0 -23
  1254. package/dist/db/psql/seeders/Data/RoleModule.js +0 -54
  1255. package/dist/db/psql/seeders/Data/RollNumberModule.js +0 -23
  1256. package/dist/db/psql/seeders/Data/SchoolFeeModule.js +0 -38
  1257. package/dist/db/psql/seeders/Data/SchoolModule.js +0 -64
  1258. package/dist/db/psql/seeders/Data/SchoolRegistration.js +0 -23
  1259. package/dist/db/psql/seeders/Data/SettingsModule.js +0 -28
  1260. package/dist/db/psql/seeders/Data/StaffTimingModule.js +0 -23
  1261. package/dist/db/psql/seeders/Data/StudentModule.js +0 -18
  1262. package/dist/db/psql/seeders/Data/SubjectModule.js +0 -37
  1263. package/dist/db/psql/seeders/Data/SyllabusManagementModule.js +0 -26
  1264. package/dist/db/psql/seeders/Data/TeacherModule.js +0 -68
  1265. package/dist/db/psql/seeders/Data/TestimonialsModule.js +0 -28
  1266. package/dist/db/psql/seeders/Data/TimetableModule.js +0 -44
  1267. package/dist/db/psql/seeders/Data/To-doModule.js +0 -28
  1268. package/dist/db/psql/seeders/Data/TypeManagementModule.js +0 -29
  1269. package/dist/db/psql/seeders/Data/UserModule.js +0 -268
  1270. package/dist/db/psql/seeders/Data/appType.js +0 -7
  1271. package/dist/helpers/s3Uploader.ts +0 -61
  1272. package/dist/helpers/utils.ts +0 -738
  1273. package/dist/index.ts +0 -415
  1274. package/dist/interfaces/academicCalendarInterface.ts +0 -11
  1275. package/dist/interfaces/accountHasReceiptDetailsInterface.ts +0 -18
  1276. package/dist/interfaces/announcementInterface.ts +0 -20
  1277. package/dist/interfaces/approvalRequestInterface.ts +0 -15
  1278. package/dist/interfaces/attendanceInterface.ts +0 -23
  1279. package/dist/interfaces/bankAccountDetailsInterface.ts +0 -15
  1280. package/dist/interfaces/bannerInterface.ts +0 -16
  1281. package/dist/interfaces/batchInterface.ts +0 -19
  1282. package/dist/interfaces/batchSubjectBookAssessmentInterface.ts +0 -10
  1283. package/dist/interfaces/batchSubjectProjectAssessmentInterface.ts +0 -13
  1284. package/dist/interfaces/blogInterface.ts +0 -48
  1285. package/dist/interfaces/bookAssessmentDateInterface.ts +0 -9
  1286. package/dist/interfaces/careerInterface.ts +0 -13
  1287. package/dist/interfaces/categoriesInterface.ts +0 -9
  1288. package/dist/interfaces/certificatesHistoryInterface.ts +0 -10
  1289. package/dist/interfaces/certificatesManagementInterface.ts +0 -13
  1290. package/dist/interfaces/cityInterface.ts +0 -13
  1291. package/dist/interfaces/classRoomInterface.ts +0 -14
  1292. package/dist/interfaces/cloudStorageInterface.ts +0 -16
  1293. package/dist/interfaces/coinPurchaseOfferInterface.ts +0 -17
  1294. package/dist/interfaces/columnInterface.ts +0 -17
  1295. package/dist/interfaces/commanInterface.ts +0 -71
  1296. package/dist/interfaces/contactFeedBackInterface.ts +0 -13
  1297. package/dist/interfaces/countryInterface.ts +0 -11
  1298. package/dist/interfaces/courseHasVisitorsInterface.ts +0 -8
  1299. package/dist/interfaces/courseInterface.ts +0 -19
  1300. package/dist/interfaces/dailyBookInterface.ts +0 -15
  1301. package/dist/interfaces/dashboardManagementInterface.ts +0 -21
  1302. package/dist/interfaces/driverInterface.ts +0 -22
  1303. package/dist/interfaces/entityGroupInterface.ts +0 -13
  1304. package/dist/interfaces/eventInterface.ts +0 -24
  1305. package/dist/interfaces/examGroupInterface.ts +0 -35
  1306. package/dist/interfaces/examHasAnswerSheetInterface.ts +0 -31
  1307. package/dist/interfaces/examInterface.ts +0 -44
  1308. package/dist/interfaces/facilityInterface.ts +0 -10
  1309. package/dist/interfaces/featureActionInterface.ts +0 -19
  1310. package/dist/interfaces/feeHistoryDetailsInterface.ts +0 -18
  1311. package/dist/interfaces/feeHistoryInterface.ts +0 -23
  1312. package/dist/interfaces/feeReminderInterface.ts +0 -14
  1313. package/dist/interfaces/feeReminderSettingInterface.ts +0 -13
  1314. package/dist/interfaces/feeReminderTypeInterface.ts +0 -11
  1315. package/dist/interfaces/feeTypeHasTermsInterface.ts +0 -13
  1316. package/dist/interfaces/feeTypeInterface.ts +0 -14
  1317. package/dist/interfaces/feedBackInterface.ts +0 -21
  1318. package/dist/interfaces/feesCollectionInterface.ts +0 -20
  1319. package/dist/interfaces/fileStorageInterface.ts +0 -15
  1320. package/dist/interfaces/floorManagementInterface.ts +0 -10
  1321. package/dist/interfaces/generateIdCardInterface.ts +0 -9
  1322. package/dist/interfaces/greetingsInterface.ts +0 -13
  1323. package/dist/interfaces/holidayInterface.ts +0 -25
  1324. package/dist/interfaces/homeworkInterface.ts +0 -14
  1325. package/dist/interfaces/informationSupportInterface.ts +0 -17
  1326. package/dist/interfaces/inquiryInterface.ts +0 -56
  1327. package/dist/interfaces/instituteEntityInterface.ts +0 -17
  1328. package/dist/interfaces/instituteEntityTypeInterface.ts +0 -12
  1329. package/dist/interfaces/instituteInterface.ts +0 -36
  1330. package/dist/interfaces/instituteSubscriptionPlanInterface.ts +0 -25
  1331. package/dist/interfaces/inventoryHistoryInterface.ts +0 -18
  1332. package/dist/interfaces/inventoryInterface.ts +0 -16
  1333. package/dist/interfaces/invoiceInterface.ts +0 -35
  1334. package/dist/interfaces/jobApplyInterface.ts +0 -39
  1335. package/dist/interfaces/lectureHistoryInterface.ts +0 -25
  1336. package/dist/interfaces/lectureInterface.ts +0 -27
  1337. package/dist/interfaces/masterLeaveInterface.ts +0 -14
  1338. package/dist/interfaces/moduleFeatureInterface.ts +0 -18
  1339. package/dist/interfaces/moduleInterface.ts +0 -16
  1340. package/dist/interfaces/offersInterface.ts +0 -19
  1341. package/dist/interfaces/paymentTermsInterface.ts +0 -16
  1342. package/dist/interfaces/pdcChequeInterface.ts +0 -17
  1343. package/dist/interfaces/pdcHistoryInterface.ts +0 -18
  1344. package/dist/interfaces/photosGalleryInterface.ts +0 -19
  1345. package/dist/interfaces/pincodeInterface.ts +0 -16
  1346. package/dist/interfaces/plannerInterface.ts +0 -35
  1347. package/dist/interfaces/productInterface.ts +0 -11
  1348. package/dist/interfaces/projectAssessmentOptionInterface.ts +0 -9
  1349. package/dist/interfaces/replaceTeacherInterface.ts +0 -25
  1350. package/dist/interfaces/roleInterface.ts +0 -27
  1351. package/dist/interfaces/rulesRegulationInterface.ts +0 -11
  1352. package/dist/interfaces/schoolFeeCollectionInterface.ts +0 -14
  1353. package/dist/interfaces/schoolFeeInterface.ts +0 -26
  1354. package/dist/interfaces/schoolOfferInterface.ts +0 -21
  1355. package/dist/interfaces/sendNotificationInerface.ts +0 -24
  1356. package/dist/interfaces/slotInterface.ts +0 -9
  1357. package/dist/interfaces/stateInterface.ts +0 -12
  1358. package/dist/interfaces/subCategoriesInterface.ts +0 -10
  1359. package/dist/interfaces/subjectHasFeeInterface.ts +0 -8
  1360. package/dist/interfaces/subjectHasPayFeeHistoryInterface.ts +0 -10
  1361. package/dist/interfaces/subjectIndexInterface.ts +0 -51
  1362. package/dist/interfaces/subscriptionPlanInterface.ts +0 -39
  1363. package/dist/interfaces/syllabusInterface.ts +0 -11
  1364. package/dist/interfaces/taskManagementInterface.ts +0 -26
  1365. package/dist/interfaces/testimonialInterface.ts +0 -13
  1366. package/dist/interfaces/toDoInterface.ts +0 -12
  1367. package/dist/interfaces/tokenInterface.ts +0 -30
  1368. package/dist/interfaces/tripInterface.ts +0 -14
  1369. package/dist/interfaces/typeManagementInterface.ts +0 -12
  1370. package/dist/interfaces/uniqueNumberCounterInterface.ts +0 -12
  1371. package/dist/interfaces/userBookAssessmentInterface.ts +0 -11
  1372. package/dist/interfaces/userDetailsInterface.ts +0 -138
  1373. package/dist/interfaces/userFeeTypeByAccountInterface.ts +0 -20
  1374. package/dist/interfaces/userFeeTypeInterface.ts +0 -17
  1375. package/dist/interfaces/userHasAnnouncementInterface.ts +0 -10
  1376. package/dist/interfaces/userHasBatchInterface.ts +0 -8
  1377. package/dist/interfaces/userHasCourseInterface.ts +0 -14
  1378. package/dist/interfaces/userHasDeviceInterface.ts +0 -11
  1379. package/dist/interfaces/userHasFeeTermsInterface.ts +0 -39
  1380. package/dist/interfaces/userHasFileInterface.ts +0 -12
  1381. package/dist/interfaces/userHasHomeWorkInterface.ts +0 -12
  1382. package/dist/interfaces/userHasInventoryHistoryInterface.ts +0 -21
  1383. package/dist/interfaces/userHasInventoryInterface.ts +0 -22
  1384. package/dist/interfaces/userHasLeaveHistoryInterface.ts +0 -17
  1385. package/dist/interfaces/userHasLeaveInterface.ts +0 -13
  1386. package/dist/interfaces/userHasOfferInterface.ts +0 -11
  1387. package/dist/interfaces/userHasParentInterface.ts +0 -15
  1388. package/dist/interfaces/userHasRoleInterface.ts +0 -14
  1389. package/dist/interfaces/userHasRollNumberInterface.ts +0 -9
  1390. package/dist/interfaces/userHasStorageInterface.ts +0 -12
  1391. package/dist/interfaces/userHasSubjectFeeInterface.ts +0 -10
  1392. package/dist/interfaces/userInstituteMetaInterface.ts +0 -49
  1393. package/dist/interfaces/userInterface.ts +0 -46
  1394. package/dist/interfaces/userLeaveRequestInterface.ts +0 -16
  1395. package/dist/interfaces/userMetaInterface.ts +0 -14
  1396. package/dist/interfaces/userPayoutDetailsInterface.ts +0 -15
  1397. package/dist/interfaces/userPayoutHistoryInterface.ts +0 -19
  1398. package/dist/interfaces/userPayoutInterface.ts +0 -13
  1399. package/dist/interfaces/userProjectAssessmentOptionInterface.ts +0 -11
  1400. package/dist/interfaces/userRequiredStepsInterface.ts +0 -10
  1401. package/dist/interfaces/userSchoolMetaInterface.ts +0 -123
  1402. package/dist/interfaces/vehicleInterface.ts +0 -12
  1403. package/dist/interfaces/vendorManagementInterface.ts +0 -20
  1404. package/dist/interfaces/videoAnalystInterface.ts +0 -38
  1405. package/dist/interfaces/walletHistoryInterface.ts +0 -16
  1406. package/dist/interfaces/walletInterface.ts +0 -11
  1407. package/dist/interfaces/walletTransactionInterface.ts +0 -47
  1408. package/dist/interfaces/workingDayInterface.ts +0 -12
  1409. package/dist/interfaces/workingShiftInterface.ts +0 -13
  1410. package/dist/models/mongodb/approvalRequestModel.ts +0 -71
  1411. package/dist/models/mongodb/attendanceModel.ts +0 -189
  1412. package/dist/models/mongodb/blogModel.ts +0 -78
  1413. package/dist/models/mongodb/careerModel.ts +0 -55
  1414. package/dist/models/mongodb/certificatesHistoryModel.ts +0 -33
  1415. package/dist/models/mongodb/certificatesManagementModel.ts +0 -42
  1416. package/dist/models/mongodb/columnModel.ts +0 -53
  1417. package/dist/models/mongodb/dailyBookModel.ts +0 -60
  1418. package/dist/models/mongodb/dashboardManagementModel.ts +0 -91
  1419. package/dist/models/mongodb/eventModel.ts +0 -153
  1420. package/dist/models/mongodb/examGroupModel.ts +0 -320
  1421. package/dist/models/mongodb/examHasAnswerSheetModel.ts +0 -121
  1422. package/dist/models/mongodb/examModel.ts +0 -268
  1423. package/dist/models/mongodb/feeReminderTypeModel.ts +0 -48
  1424. package/dist/models/mongodb/feedBackModel.ts +0 -87
  1425. package/dist/models/mongodb/generateIdCardModel.ts +0 -29
  1426. package/dist/models/mongodb/holidayModel.ts +0 -164
  1427. package/dist/models/mongodb/index.ts +0 -21
  1428. package/dist/models/mongodb/informationSupportModel.ts +0 -76
  1429. package/dist/models/mongodb/inquiryModel.ts +0 -196
  1430. package/dist/models/mongodb/invoiceModel.ts +0 -115
  1431. package/dist/models/mongodb/jobApplyModel.ts +0 -135
  1432. package/dist/models/mongodb/photosGalleryModel.ts +0 -63
  1433. package/dist/models/mongodb/plannerModel.ts +0 -169
  1434. package/dist/models/mongodb/plugin/addDefaultAttributesPlugin.ts +0 -70
  1435. package/dist/models/mongodb/plugin/transformIdInQueryPlugin.ts +0 -67
  1436. package/dist/models/mongodb/plugin/transformIdInResponsePlugin.ts +0 -72
  1437. package/dist/models/mongodb/replaceTeacherModel.ts +0 -90
  1438. package/dist/models/mongodb/schoolFeeModel.ts +0 -175
  1439. package/dist/models/mongodb/subjectIndexModel.ts +0 -875
  1440. package/dist/models/mongodb/subscriptionPlanModel.ts +0 -113
  1441. package/dist/models/mongodb/taskManagementModel.ts +0 -152
  1442. package/dist/models/mongodb/uniqueNumberCounterModel.ts +0 -57
  1443. package/dist/models/mongodb/userDetailsModel.ts +0 -532
  1444. package/dist/models/mongodb/userDoc.ts +0 -16
  1445. package/dist/models/mongodb/userInstituteMetaModel.ts +0 -202
  1446. package/dist/models/mongodb/userSchoolMetaModel.ts +0 -617
  1447. package/dist/models/mongodb/videoAnalystModel.ts +0 -56
  1448. package/dist/models/mongodb/walletTransactionModel.ts +0 -150
  1449. package/dist/models/psql/SubCategoriesModel.ts +0 -122
  1450. package/dist/models/psql/academicCalendarModel.ts +0 -117
  1451. package/dist/models/psql/accountHasReceiptDetailsModel.ts +0 -179
  1452. package/dist/models/psql/announcementModel.ts +0 -248
  1453. package/dist/models/psql/areaModel.ts +0 -47
  1454. package/dist/models/psql/bankAccountDetailsModel.ts +0 -123
  1455. package/dist/models/psql/bannerModel.ts +0 -141
  1456. package/dist/models/psql/batchModel.ts +0 -268
  1457. package/dist/models/psql/batchSubjectBookAssessmentModel.ts +0 -185
  1458. package/dist/models/psql/batchSubjectProjectAssessmentModel.ts +0 -187
  1459. package/dist/models/psql/bookAssessmentDateModel.ts +0 -106
  1460. package/dist/models/psql/categoriesModel.ts +0 -98
  1461. package/dist/models/psql/cityModel.ts +0 -86
  1462. package/dist/models/psql/classRoomModel.ts +0 -153
  1463. package/dist/models/psql/cloudStorageModel.ts +0 -121
  1464. package/dist/models/psql/coinPurchaseOfferModel.ts +0 -128
  1465. package/dist/models/psql/contactFeedBackModel.ts +0 -146
  1466. package/dist/models/psql/countryModel.ts +0 -58
  1467. package/dist/models/psql/courseHasVisitorsModel.ts +0 -89
  1468. package/dist/models/psql/courseModel.ts +0 -166
  1469. package/dist/models/psql/driverModel.ts +0 -204
  1470. package/dist/models/psql/entityGroupModel.ts +0 -124
  1471. package/dist/models/psql/facilityModel.ts +0 -149
  1472. package/dist/models/psql/featureActionModel.ts +0 -118
  1473. package/dist/models/psql/feeHistoryDetailsModel.ts +0 -218
  1474. package/dist/models/psql/feeHistoryModel.ts +0 -402
  1475. package/dist/models/psql/feeReminderModel.ts +0 -295
  1476. package/dist/models/psql/feeReminderSettingModel.ts +0 -115
  1477. package/dist/models/psql/feeTypeHasTermsModel.ts +0 -127
  1478. package/dist/models/psql/feeTypeModel.ts +0 -151
  1479. package/dist/models/psql/feesCollectionModel.ts +0 -275
  1480. package/dist/models/psql/fileStorageModel.ts +0 -90
  1481. package/dist/models/psql/floorManagementModel.ts +0 -109
  1482. package/dist/models/psql/greetingsModel.ts +0 -147
  1483. package/dist/models/psql/homeWorkModel.ts +0 -155
  1484. package/dist/models/psql/index.ts +0 -108
  1485. package/dist/models/psql/instituteEntityModel.ts +0 -160
  1486. package/dist/models/psql/instituteEntityTypeModel.ts +0 -93
  1487. package/dist/models/psql/instituteModel.ts +0 -290
  1488. package/dist/models/psql/instituteSubscriptionPlanModel.ts +0 -227
  1489. package/dist/models/psql/inventoryHistoryModel.ts +0 -189
  1490. package/dist/models/psql/inventoryModel.ts +0 -160
  1491. package/dist/models/psql/lectureHistoryModel.ts +0 -272
  1492. package/dist/models/psql/lectureModel.ts +0 -602
  1493. package/dist/models/psql/masterLeaveModel.ts +0 -173
  1494. package/dist/models/psql/moduleFeatureModel.ts +0 -121
  1495. package/dist/models/psql/moduleModel.ts +0 -124
  1496. package/dist/models/psql/offerModel.ts +0 -175
  1497. package/dist/models/psql/paymentTermsModel.ts +0 -133
  1498. package/dist/models/psql/pdcChequeModel.ts +0 -169
  1499. package/dist/models/psql/pdcHistoryModel.ts +0 -185
  1500. package/dist/models/psql/pincodeModel.ts +0 -103
  1501. package/dist/models/psql/productModel.ts +0 -148
  1502. package/dist/models/psql/projectAssessmentOptionModel.ts +0 -111
  1503. package/dist/models/psql/roleModel.ts +0 -120
  1504. package/dist/models/psql/rulesRegulationModel.ts +0 -92
  1505. package/dist/models/psql/schoolFeeCollectionModel.ts +0 -177
  1506. package/dist/models/psql/schoolOfferModel.ts +0 -202
  1507. package/dist/models/psql/sendNotificationModel.ts +0 -146
  1508. package/dist/models/psql/slotModel.ts +0 -122
  1509. package/dist/models/psql/stateModel.ts +0 -70
  1510. package/dist/models/psql/subjectHasFeeModel.ts +0 -97
  1511. package/dist/models/psql/subjectHasPayFeeHistoryModel.ts +0 -132
  1512. package/dist/models/psql/syllabusModel.ts +0 -149
  1513. package/dist/models/psql/testimonialModel.ts +0 -215
  1514. package/dist/models/psql/toDoModel.ts +0 -147
  1515. package/dist/models/psql/tokenModel.ts +0 -53
  1516. package/dist/models/psql/tripModel.ts +0 -141
  1517. package/dist/models/psql/typeManagementModel.ts +0 -155
  1518. package/dist/models/psql/userBookAssessmentModel.ts +0 -168
  1519. package/dist/models/psql/userFeeTypeByAccountModel.ts +0 -205
  1520. package/dist/models/psql/userFeeTypeModel.ts +0 -195
  1521. package/dist/models/psql/userHasAnnouncementModel.ts +0 -132
  1522. package/dist/models/psql/userHasBatchModel.ts +0 -112
  1523. package/dist/models/psql/userHasCourseModel.ts +0 -142
  1524. package/dist/models/psql/userHasDeviceModel.ts +0 -112
  1525. package/dist/models/psql/userHasFeeTermsModel.ts +0 -232
  1526. package/dist/models/psql/userHasFileModel.ts +0 -126
  1527. package/dist/models/psql/userHasHomeWorkModel.ts +0 -145
  1528. package/dist/models/psql/userHasInventoryHistoryModel.ts +0 -179
  1529. package/dist/models/psql/userHasInventoryModel.ts +0 -181
  1530. package/dist/models/psql/userHasLeaveHistoryModel.ts +0 -132
  1531. package/dist/models/psql/userHasLeaveModel.ts +0 -147
  1532. package/dist/models/psql/userHasOfferModel.ts +0 -190
  1533. package/dist/models/psql/userHasParentModel.ts +0 -164
  1534. package/dist/models/psql/userHasRoleModel.ts +0 -119
  1535. package/dist/models/psql/userHasRollNumberModel.ts +0 -115
  1536. package/dist/models/psql/userHasStorageModel.ts +0 -111
  1537. package/dist/models/psql/userHasSubjectFeeModel.ts +0 -106
  1538. package/dist/models/psql/userLeaveRequestModel.ts +0 -129
  1539. package/dist/models/psql/userModel.ts +0 -491
  1540. package/dist/models/psql/userPayoutDetailsModel.ts +0 -193
  1541. package/dist/models/psql/userPayoutHistoryModel.ts +0 -188
  1542. package/dist/models/psql/userPayoutModel.ts +0 -442
  1543. package/dist/models/psql/userProjectAssessmentOptionModel.ts +0 -155
  1544. package/dist/models/psql/userRequiredStepsModel.ts +0 -97
  1545. package/dist/models/psql/vehicleModel.ts +0 -133
  1546. package/dist/models/psql/vendorManagementModel.ts +0 -215
  1547. package/dist/models/psql/walletHistoryModel.ts +0 -130
  1548. package/dist/models/psql/walletModel.ts +0 -114
  1549. package/dist/models/psql/workingDayModel.ts +0 -99
  1550. package/dist/models/psql/workingShiftModel.ts +0 -115
  1551. package/dist/services/Concrete/mongooseCommonService.ts +0 -194
  1552. package/dist/services/Concrete/sequelizeCommanService.ts +0 -149
  1553. package/dist/services/Contracts/IMongooseCommonService.ts +0 -75
  1554. package/dist/services/Contracts/ISequelizeCommonService.ts +0 -68
  1555. package/dist/types/academicCalendarType.ts +0 -7
  1556. package/dist/types/accountHasReceiptDetailsType.ts +0 -9
  1557. package/dist/types/announcementType.ts +0 -9
  1558. package/dist/types/approveRequestType.ts +0 -3
  1559. package/dist/types/areaType.ts +0 -4
  1560. package/dist/types/attendanceType.ts +0 -3
  1561. package/dist/types/bankAccountDetailsType.ts +0 -4
  1562. package/dist/types/bannerType.ts +0 -7
  1563. package/dist/types/batchSubjectBookAssessmentType.ts +0 -9
  1564. package/dist/types/batchSubjectProjectAssessmentType.ts +0 -9
  1565. package/dist/types/batchType.ts +0 -7
  1566. package/dist/types/blogType.ts +0 -3
  1567. package/dist/types/bookAssessmentDateType.ts +0 -9
  1568. package/dist/types/careerType.ts +0 -3
  1569. package/dist/types/categoriesType.ts +0 -4
  1570. package/dist/types/certificatesHistoryType.ts +0 -2
  1571. package/dist/types/certificatesManagementType.ts +0 -2
  1572. package/dist/types/classRoomType.ts +0 -4
  1573. package/dist/types/cloudStorageType.ts +0 -4
  1574. package/dist/types/coinPurchaseOfferType.ts +0 -4
  1575. package/dist/types/commonType.ts +0 -10
  1576. package/dist/types/contactFeedBackType.ts +0 -4
  1577. package/dist/types/courseHasVisitorsType.ts +0 -3
  1578. package/dist/types/courseType.ts +0 -3
  1579. package/dist/types/dailyBookType.ts +0 -3
  1580. package/dist/types/dashboardManagementType.ts +0 -3
  1581. package/dist/types/driverType.ts +0 -8
  1582. package/dist/types/entityGroupType.ts +0 -4
  1583. package/dist/types/eventType.ts +0 -3
  1584. package/dist/types/examGroupType.ts +0 -7
  1585. package/dist/types/examHasAnswerSheetType.ts +0 -3
  1586. package/dist/types/examType.ts +0 -6
  1587. package/dist/types/facilityType.ts +0 -4
  1588. package/dist/types/featureActionType.ts +0 -4
  1589. package/dist/types/feeHistoryDetailsType.ts +0 -8
  1590. package/dist/types/feeHistoryType.ts +0 -12
  1591. package/dist/types/feeReminderSettingType.ts +0 -4
  1592. package/dist/types/feeReminderType.ts +0 -4
  1593. package/dist/types/feeReminderTypeType.ts +0 -3
  1594. package/dist/types/feeTypeHasTermsType.ts +0 -4
  1595. package/dist/types/feeTypeType.ts +0 -4
  1596. package/dist/types/feedBackType.ts +0 -3
  1597. package/dist/types/feesCollectionType.ts +0 -4
  1598. package/dist/types/fileStorageType.ts +0 -4
  1599. package/dist/types/floormanagementType.ts +0 -5
  1600. package/dist/types/generateIdCardType.ts +0 -6
  1601. package/dist/types/greetingsType.ts +0 -6
  1602. package/dist/types/holidayType.ts +0 -6
  1603. package/dist/types/homeWorkType.ts +0 -4
  1604. package/dist/types/ifsc.d.ts +0 -17
  1605. package/dist/types/informationSupportType.ts +0 -3
  1606. package/dist/types/inquiryType.ts +0 -3
  1607. package/dist/types/instituteEntityType.ts +0 -8
  1608. package/dist/types/instituteEntityTypeType.ts +0 -4
  1609. package/dist/types/instituteSubscriptionPlanType.ts +0 -4
  1610. package/dist/types/instituteType.ts +0 -4
  1611. package/dist/types/inventoryHistoryType.ts +0 -4
  1612. package/dist/types/inventoryType.ts +0 -4
  1613. package/dist/types/jobApply.ts +0 -2
  1614. package/dist/types/lectureHistoryType.ts +0 -8
  1615. package/dist/types/lectureType.ts +0 -8
  1616. package/dist/types/masterLeaveType.ts +0 -4
  1617. package/dist/types/moduleFeatureType.ts +0 -4
  1618. package/dist/types/moduleType.ts +0 -4
  1619. package/dist/types/mongoose-sequence.d.ts +0 -21
  1620. package/dist/types/offerType.ts +0 -4
  1621. package/dist/types/paymentTermsType.ts +0 -6
  1622. package/dist/types/pdcChequeType.ts +0 -8
  1623. package/dist/types/pdcHistoryType.ts +0 -3
  1624. package/dist/types/photosGalleryType.ts +0 -3
  1625. package/dist/types/plannerType.ts +0 -8
  1626. package/dist/types/productType.ts +0 -4
  1627. package/dist/types/projectAssessmentOptionType.ts +0 -9
  1628. package/dist/types/roleType.ts +0 -13
  1629. package/dist/types/rulesRegulationType.ts +0 -4
  1630. package/dist/types/schoolFeeCollectionType.ts +0 -4
  1631. package/dist/types/schoolFeeType.ts +0 -4
  1632. package/dist/types/schoolOfferType.ts +0 -4
  1633. package/dist/types/sendNotificationType.ts +0 -4
  1634. package/dist/types/sequelize-extensions.d.ts +0 -24
  1635. package/dist/types/slotType.ts +0 -3
  1636. package/dist/types/subCategoryType.ts +0 -4
  1637. package/dist/types/subjectHasFeeType.ts +0 -4
  1638. package/dist/types/subjectHasPayFeeHistoryType.ts +0 -4
  1639. package/dist/types/subjectIndexType.ts +0 -7
  1640. package/dist/types/subscriptionPlanType.ts +0 -3
  1641. package/dist/types/syllabusType.ts +0 -8
  1642. package/dist/types/taskManagementType.ts +0 -3
  1643. package/dist/types/testimonialType.ts +0 -11
  1644. package/dist/types/toDoType.ts +0 -8
  1645. package/dist/types/tripType.ts +0 -3
  1646. package/dist/types/typeManagementType.ts +0 -4
  1647. package/dist/types/uniqueNumberCounterType.ts +0 -3
  1648. package/dist/types/userBookAssessmentType.ts +0 -9
  1649. package/dist/types/userDetailsType.ts +0 -3
  1650. package/dist/types/userFeeTypeByAccountType.ts +0 -4
  1651. package/dist/types/userFeeTypeType.ts +0 -6
  1652. package/dist/types/userHasAnnouncementType.ts +0 -4
  1653. package/dist/types/userHasBatchType.ts +0 -11
  1654. package/dist/types/userHasCourseType.ts +0 -5
  1655. package/dist/types/userHasDeviceType.ts +0 -4
  1656. package/dist/types/userHasFeeTermsType.ts +0 -4
  1657. package/dist/types/userHasFileType.ts +0 -4
  1658. package/dist/types/userHasHomeWorkType.ts +0 -4
  1659. package/dist/types/userHasInventoryHistoryType.ts +0 -4
  1660. package/dist/types/userHasInventoryType.ts +0 -4
  1661. package/dist/types/userHasLeaveHistoryType.ts +0 -4
  1662. package/dist/types/userHasLeaveType.ts +0 -4
  1663. package/dist/types/userHasOffer.ts +0 -4
  1664. package/dist/types/userHasParentType.ts +0 -10
  1665. package/dist/types/userHasRoleType.ts +0 -4
  1666. package/dist/types/userHasRollNumberType.ts +0 -4
  1667. package/dist/types/userHasStorageType.ts +0 -4
  1668. package/dist/types/userHasSubjectFeeType.ts +0 -4
  1669. package/dist/types/userInstituteMetaType.ts +0 -3
  1670. package/dist/types/userLeaveRequestType.ts +0 -4
  1671. package/dist/types/userMetaType.ts +0 -16
  1672. package/dist/types/userPayoutDetailsType.ts +0 -4
  1673. package/dist/types/userPayoutHistoryType.ts +0 -4
  1674. package/dist/types/userPayoutType.ts +0 -9
  1675. package/dist/types/userProjectAssessmentOptionType.ts +0 -9
  1676. package/dist/types/userRequiredStepsType.ts +0 -4
  1677. package/dist/types/userSchoolMetaType.ts +0 -4
  1678. package/dist/types/userType.ts +0 -12
  1679. package/dist/types/vehicleType.ts +0 -4
  1680. package/dist/types/vendorType.ts +0 -5
  1681. package/dist/types/videoAnalystType.ts +0 -3
  1682. package/dist/types/walletHistoryType.ts +0 -4
  1683. package/dist/types/walletTransactionType.ts +0 -4
  1684. package/dist/types/walletType.ts +0 -4
  1685. package/dist/types/workingDayType.ts +0 -4
  1686. package/dist/types/workingShiftType.ts +0 -4
  1687. /package/dist/{interfaces/areaInterface.ts → src/interfaces/areaInterface.d.ts} +0 -0
@@ -1,1046 +0,0 @@
1
- import { Order } from 'sequelize';
2
- import { ENV_VARIABLE } from '../configs/env';
3
-
4
- export const SIXTY = 60 as const;
5
- export const ONE_HUNDRED = 100 as const;
6
- export const ONE_THOUSAND = 1000 as const;
7
-
8
- export const USER_INSTITUTE_META_STATUS_REJECTED_COUNT = 2 as const;
9
-
10
- export enum PAGINATION {
11
- LIMIT = 10,
12
- PAGE = 1,
13
- }
14
- export const DEFAULT_CLASS_ROOM_TITLE = 'Default Class Room' as const;
15
- export const DEFAULT_BATCH_TITLE = 'Batch A' as const;
16
- export const PAGINATION_ORDER: Order = [['createdAt', 'DESC']];
17
- export const PAGINATION_UPDATE_ORDER: Order = [['updatedAt', 'DESC']];
18
- export enum EMAIL_VERIFICATION {
19
- PENDING = 'PENDING',
20
- ACEEPTED = 'ACCEPTED',
21
- REJECTED = 'REJECTED',
22
- }
23
-
24
- export enum MOBILE_VERIFICATION {
25
- PENDING = 'PENDING',
26
- ACEEPTED = 'ACEEPTED',
27
- }
28
- export enum PDF_MICRO_SERVICE_END_POINT {
29
- PDF_API_URL = 'pdf/generate',
30
- RESULT_API_URL = 'result/generate',
31
- }
32
- export enum USER_STATUS {
33
- OTP_VERIFICATION_PENDING = 'OTP_VERIFICATION_PENDING',
34
- ACTIVE = 'ACTIVE',
35
- INACTIVE = 'INACTIVE',
36
- }
37
- export enum INVENTORY_TYPE {
38
- INVENTORY = 'INVENTORY',
39
- DEAD_STOCK = 'DEAD_STOCK',
40
- }
41
- export enum USER_INVENTORY_ACTION {
42
- BOTH = 'BOTH',
43
- DAMAGE = 'DAMAGE',
44
- LOST = 'LOST',
45
- UPDATE = 'UPDATE',
46
- CREATE = 'CREATE',
47
- }
48
- export enum ATTENDANCE_STATUS {
49
- NONE = 'NONE',
50
- PRESENT = 'PRESENT',
51
- ABSENT = 'ABSENT',
52
- LATE = 'LATE',
53
- EARLY_LEFT = 'EARLY_LEFT',
54
- }
55
- export enum ATTENDANCE_TYPE {
56
- BATCH = 'BATCH',
57
- LECTURE = 'LECTURE',
58
- FULL_DAY = 'FULL_DAY',
59
- }
60
- export enum SCHOOL_TYPE {
61
- GRANT_AIDED_FULL = 'GRANT-IN-AID (100%)',
62
- GRANT_AIDED_PARTIAL = 'GRANT-IN-AID (60-40)',
63
- SALARY_AIDED = 'AIDED ONLY FOR SALARY',
64
- SELF_FINANCED = 'SELF-FINANCED',
65
- GOVERNMENT = 'GOVERNMENT',
66
- OTHER_GOVERNMENT_DEPARTMENTS = 'GOVERNED BY OTHER GOVERNMENT DEPARTMENTS',
67
- SAINIK_SCHOOL = 'SAINIK SCHOOL',
68
- OTHERS = 'OTHERS',
69
- }
70
- export enum SCHOOL_SUB_TYPE {
71
- BOYS = 'BOYS',
72
- GIRLS = 'GIRLS',
73
- BOTH = 'BOTH',
74
- }
75
- export enum GENDER {
76
- // Male = 'Male',
77
- // Female = 'Female',
78
- // Other = 'Other',
79
- MALE = 'MALE',
80
- FEMALE = 'FEMALE',
81
- OTHER = 'OTHER',
82
- }
83
-
84
- export enum ASSIGN_TYPE {
85
- RETURNABLE = 'RETURNABLE',
86
- NOT_RETURNABLE = 'NOT_RETURNABLE',
87
- }
88
- export enum RETURN_STATUS {
89
- RETURN = 'RETURN',
90
- NOT_RETURN = 'NOT_RETURN',
91
- PENDING = 'PENDING',
92
- }
93
- export enum ACADEMIC_CALENDARS_TYPE {
94
- BATCH = 'BATCH',
95
- GLOBAL = 'GLOBAL',
96
- INSTITUTE = 'INSTITUTE',
97
- }
98
- export enum USER_TYPES {
99
- MASTER_ADMIN = 'MASTER_ADMIN',
100
- ADMIN = 'ADMIN',
101
- INSTITUTE_MASTER_ADMIN = 'INSTITUTE_MASTER_ADMIN',
102
- INSTITUTE_ADMIN = 'INSTITUTE_ADMIN',
103
- TEACHER = 'TEACHER',
104
- STUDENT = 'STUDENT',
105
- PARENTS = 'PARENTS',
106
- DRIVER = 'DRIVER',
107
- }
108
-
109
- export enum TOKEN_TYPES {
110
- ACCESS_TOKEN = 'ACCESS_TOKEN',
111
- REFRESH_TOKEN = 'REFRESH_TOKEN',
112
- OTP_VERIFICATION_TOKEN = 'OTP_VERIFICATION_TOKEN',
113
- EMAIL_VERIFICATION_TOKEN = 'EMAIL_VERIFICATION_TOKEN',
114
- }
115
-
116
- export enum COMMAN_STATUS {
117
- ACTIVE = 'ACTIVE',
118
- INACTIVE = 'INACTIVE',
119
- }
120
- export enum USER_COURSE_STATUS {
121
- RUNNING = 'RUNNING',
122
- EXPIRED = 'EXPIRED',
123
- SUSPENDED = 'SUSPENDED',
124
- }
125
- export enum TRIP_TYPE {
126
- PICK_UP = 'PICK_UP',
127
- DROP = 'DROP',
128
- }
129
- export enum GREETING_TYPE {
130
- HIGHEST_MARKS = 'HIGHEST_MARKS',
131
- BIRTHDAY = 'BIRTHDAY', //
132
- ANNIVERSARY = 'ANNIVERSARY', //
133
- HIGHEST_ATTENDANCE = 'HIGHEST_ATTENDANCE',
134
- PUNCTUAL = 'PUNCTUAL',
135
- FESTIVAL = 'FESTIVAL',
136
- }
137
- export enum FEE_REMINDER_SETTING_STATUS {
138
- ACTIVE = 'ACTIVE',
139
- INACTIVE = 'INACTIVE',
140
- // DEFAULT = 'DEFAULT',
141
- }
142
- export enum TERM_DURATION {
143
- QUARTERLY = 'QUARTERLY',
144
- YEARLY = 'YEARLY',
145
- HALF_YEARLY = 'HALF_YEARLY',
146
- }
147
- export enum FEE_REMINDER_SETTING_TYPE {
148
- DUE_SOON = 'DUE_SOON',
149
- DUE_TODAY = 'DUE_TODAY',
150
- LATE_PAYMENT = 'LATE_PAYMENT',
151
- OVER_DUE = 'OVER_DUE',
152
- }
153
- export enum FEE_REMINDER_SETTING_FREQUENCY {
154
- ONCE_A_DAY = 'ONCE_A_DAY',
155
- TWICE_A_DAY = 'TWICE_A_DAY',
156
- THREE_A_DAY = 'THREE_A_DAY',
157
- FOUR_A_DAY = 'FOUR_A_DAY',
158
- }
159
- export enum FEE_TYPE_FREQUENCY {
160
- ONCE_IN_A_LIFE = 'ONCE_IN_LIFE',
161
- MULTIPlE_TIME_IN_YEAR = 'MULTIPlE_TIME_IN_YEAR',
162
- }
163
- export enum PAYMENT_TYPE {
164
- CASH = 'CASH',
165
- CHEQUE = 'CHEQUE',
166
- UPI = 'UPI',
167
- }
168
- export enum FEE_PAYMENT_STATUS {
169
- PENDING = 'PENDING',
170
- COMPLETED = 'COMPLETED',
171
- SEND_REQUEST = 'SEND_REQUEST',
172
- }
173
- export enum INSTITUTE_STATUS {
174
- ACTIVE = 'ACTIVE',
175
- INACTIVE = 'INACTIVE',
176
- }
177
- export enum OFFER_TYPE {
178
- AMOUNT = 'AMOUNT',
179
- PERCENTAGE = 'PERCENTAGE',
180
- }
181
- export enum OFFER_NAME {
182
- FEE = 'FEE',
183
- COURSE = 'COURSE',
184
- }
185
- export enum LEAVE_TYPE {
186
- FULL_DAY = 'FULL_DAY',
187
- FIRST_HALF = 'FIRST_HALF',
188
- SECOND_HALF = 'SECOND_HALF',
189
- }
190
- export enum LEAVE {
191
- PAID = 'PAID',
192
- UN_PAID = 'UN_PAID',
193
- }
194
- export enum LEAVE_STATUS {
195
- PENDING = 'PENDING',
196
- ACCEPTED = 'ACCEPTED',
197
- REJECTED = 'REJECTED',
198
- CANCELLED = 'CANCELLED',
199
- }
200
-
201
- export enum WORKIN_DAY_STATUS {
202
- ACTIVE = 'ACTIVE',
203
- INACTIVE = 'INACTIVE',
204
- }
205
- export enum SCHOOL_SHIFT {
206
- MORNING = 'MORNING',
207
- NOON = 'NOON',
208
- // BOTH = 'BOTH',
209
- }
210
-
211
- export enum INSTITUTE_ENTITY_STATUS {
212
- ACTIVE = 'ACTIVE',
213
- INACTIVE = 'INACTIVE',
214
- }
215
-
216
- export enum INSTITUTE_ENTITY_TYPE_STATUS {
217
- ACTIVE = 'ACTIVE',
218
- INACTIVE = 'INACTIVE',
219
- }
220
-
221
- export enum INSTITUTE_ENTITY_TYPE_SEQUENCE {
222
- FIRST = 'FIRST',
223
- LAST = 'LAST',
224
- }
225
- export enum ADMISSION_TYPE {
226
- REGULAR = 'REGULAR',
227
- RTE = 'RTE',
228
- }
229
- export enum NO_TYPE {
230
- GPF_NO = 'GPF_NO',
231
- EPF_NO = 'EPF_NO',
232
- NA = 'NA',
233
- }
234
- export enum USER_DETAILS {
235
- FORMAL_SOLDIER = 'FORMAL_SOLDIER',
236
- PHYSICALLY_HANDICAP = 'PHYSICALLY_HANDICAP',
237
- }
238
- export enum WORK_TYPE {
239
- JOB = 'JOB',
240
- BUSINESS = 'BUSINESS',
241
- SELF_EMPLOYED = 'SELF_EMPLOYED',
242
- }
243
- export enum BLOG_STATUS {
244
- ACCEPTED = 'ACCEPTED',
245
- PENDING = 'PENDING',
246
- REJECTED = 'REJECTED',
247
- }
248
- export enum WORK_CATEGORY {
249
- GOVERNMENT = 'GOVERNMENT',
250
- PRIVATE = 'PRIVATE',
251
- SELF_EMPLOYED = 'SELF_EMPLOYED',
252
- OTHER = 'OTHER',
253
- }
254
- export enum DISABILITY_TYPE {
255
- VISUALLY_HANDICAP = 'VISUALLY_HANDICAP',
256
- VISUALLY_HANDIL = 'VISUALLY_HANDIL',
257
- MENTALLY_CHALLENGED = 'MENTALLY_CHALLENGED',
258
- ORTHOPEDIC_HANDICAP = 'ORTHOPEDIC_HANDICAP',
259
- OTHER = 'OTHER',
260
- }
261
-
262
- export enum GUARDIANS_USER_META_MODEL_STATUS {
263
- PENDING = 'PENDING',
264
- ACEEPTED = 'ACCEPTED',
265
- REJECTED = 'REJECTED',
266
- }
267
-
268
- export enum USER_HAS_PARENT_STATUS {
269
- PENDING = 'PENDING',
270
- ACEEPTED = 'ACCEPTED',
271
- REJECTED = 'REJECTED',
272
- }
273
-
274
- export enum USER_INSTITUTE_META_STATUS {
275
- PENDING = 'PENDING',
276
- ACCEPTED = 'ACCEPTED',
277
- REJECTED = 'REJECTED',
278
- LEFT = 'LEFT',
279
- BLOCKED = 'BLOCKED',
280
- SUBSCRIPTION_PLAN_EXPIRED = 'SUBSCRIPTION_PLAN_EXPIRED',
281
- }
282
-
283
- export enum EMPLOYMENT_TYPE {
284
- PART_TIME = 'PART_TIME',
285
- FULL_TIME = 'FULL_TIME',
286
- }
287
- export enum FACILITY_TYPE {
288
- BUILDING = 'BUILDING',
289
- CO_INFRA = 'CO_INFRA',
290
- }
291
- export enum FEED_BACK_TYPE {
292
- SUGGESTION = 'SUGGESTION',
293
- COMPLAINT = 'COMPLAINT',
294
- REQUEST = 'REQUEST',
295
- }
296
- export enum FEED_BACK_STATUS {
297
- OPEN = 'OPEN',
298
- CLOSED = 'CLOSED',
299
- WORKING = 'WORKING',
300
- POST_ON_FEED = 'POST_ON_FEED',
301
- }
302
- export enum APP_TYPE {
303
- INSTITUTE_APP = 'INSTITUTE_APP',
304
- SCHOOL_APP = 'SCHOOL_APP',
305
- GLOBAL_APP = 'GLOBAL_APP',
306
- STUDENT_APP = 'STUDENT_APP',
307
- }
308
- export enum BANNER_TYPE {
309
- BANNER_IMAGE = 'BANNER_IMAGE',
310
- BANNER_VIDEO = 'BANNER_VIDEO',
311
- }
312
- export enum ACADEMIC_CALENDARS_STATUS {
313
- CURRENT_ACADEMIC_CALENDAR = 'CURRENT_ACADEMIC_CALENDAR',
314
- FUTURE_ACADEMIC_CALENDAR = 'FUTURE_ACADEMIC_CALENDAR',
315
- PAST_ACADEMIC_CALENDAR = 'PAST_ACADEMIC_CALENDAR',
316
- }
317
- export enum FILE_TYPE {
318
- FILE_IMAGE = 'FILE_IMAGE',
319
- FILE_VIDEO = 'FILE_VIDEO',
320
- FILE_DOCUMENT = 'FILE_DOCUMENT',
321
- }
322
-
323
- export enum TYPE_MANAGEMENT_TYPE {
324
- BATCH = 'BATCH',
325
- LECTURE = 'LECTURE',
326
- EXAM = 'EXAM',
327
- PAYMENT = 'PAYMENT',
328
- VIDEO = 'VIDEO', //not used
329
- NOTE = 'NOTE', //not used
330
- LEAVE = 'LEAVE',
331
- ASSIGNMENT = 'ASSIGNMENT', //not used
332
- CATEGORY = 'CATEGORY', //not used
333
- HOLIDAY = 'HOLIDAY',
334
- FEES = 'FEES', //not used
335
- MATERIAL = 'MATERIAL', // subject index file category materials(categoryId)
336
- FACILITY = 'FACILITY',
337
- // FEE_TYPE = 'FEE_TYPE',
338
- SERVICE_FEE = 'SERVICE_FEE',
339
- GENERAL_FEE = 'GENERAL_FEE',
340
- BOOK_ASSESSMENT = 'BOOK_ASSESSMENT',
341
- PROJECT_ASSESSMENT = 'PROJECT_ASSESSMENT',
342
- ROOM_TYPE = 'ROOM_TYPE',
343
- }
344
-
345
- export enum TYPE_MANAGEMENT_STATUS {
346
- ACTIVE = 'ACTIVE',
347
- INACTIVE = 'INACTIVE',
348
- DELETED = 'DELETED',
349
- }
350
- export enum APPROVE_REQUEST_TYPE {
351
- BLOG = 'BLOG',
352
- }
353
- export enum APPROVE_REQUEST_STATUS {
354
- PENDING = 'PENDING',
355
- PUBLISHED = 'PUBLISHED',
356
- REJECTED = 'REJECTED',
357
- }
358
-
359
- export enum ANNOUCEMENT_SCHEDULE_TYPE {
360
- INSTANT = 'INSTANT',
361
- SCHEDULE = 'SCHEDULE',
362
- }
363
- export enum TYPE_OF_USER {
364
- USER = 'USER',
365
- INSTITUTE = 'INSTITUTE',
366
- SCHOOL = 'SCHOOL',
367
- }
368
-
369
- export enum ANNOUCEMENT_STATUS {
370
- PENDING = 'PENDING',
371
- PROCESSING = 'PROCESSING',
372
- CREATED = 'CREATED',
373
- }
374
-
375
- export enum USER_HAS_ANNOUCEMENT_STATUS {
376
- SENT = 'SENT',
377
- VIEW = 'VIEW',
378
- }
379
- export enum GREETING_STATUS {
380
- SENT = 'SENT',
381
- PENDING = 'PENDING',
382
- }
383
-
384
- export enum EXAM_MODE {
385
- ONLINE = 'ONLINE',
386
- OFFLINE = 'OFFLINE',
387
- }
388
- export enum COURSE_STATUS {
389
- SAVE_AS_DRAFT = 'SAVE_AS_DRAFT',
390
- PUBLISH = 'PUBLISH',
391
- }
392
-
393
- export enum EXAM_STATUS {
394
- PENDING = 'PENDING',
395
- PARTIAL_PROCESSING = 'PARTIAL_PROCESSING',
396
- PROCESSING = 'PROCESSING',
397
- COMPLETED = 'COMPLETED',
398
- PARTIAL_COMPLETED = 'PARTIAL_COMPLETED',
399
- RESULT_OUT = 'RESULT_OUT',
400
- CANCELED = 'CANCELED',
401
- }
402
-
403
- export enum EXAM_ANSWER_SELECTION_TYPE {
404
- SINGLE = 'SINGLE',
405
- MULTIPLE = 'MULTIPLE',
406
- }
407
-
408
- export enum EXAM_VALID_ANSWER_TYPE {
409
- SINGLE = 'SINGLE',
410
- MULTIPLE = 'MULTIPLE',
411
- ALL = 'ALL',
412
- }
413
-
414
- export enum EXAM_ANSWER_SHEET_STATUS {
415
- PENDING = 'PENDING',
416
- PROCESSING = 'PROCESSING',
417
- SUBMITED = 'SUBMITED',
418
- }
419
-
420
- export enum EXAM_ANSWER_SHEET_RESULT_STATUS {
421
- PENDING = 'PENDING',
422
- PASS = 'PASS',
423
- FAILED = 'FAILED',
424
- ABSENT = 'ABSENT',
425
- }
426
-
427
- export enum EXAM_ANSWER_SHEET_RESULT_TYPE {
428
- MASTER = 'MASTER',
429
- ANSWERS = 'ANSWERS',
430
- }
431
- export enum PAYMENT_TERMS_STATUS {
432
- DUE = 'DUE',
433
- PAID = 'PAID',
434
- }
435
- export enum PAYMENT_TERMS_TYPE {
436
- YEARLY = 'YEARLY',
437
- MONTHLY = 'MONTHLY',
438
- HALF_YEARLY = 'HALF_YEARLY',
439
- QUARTERLY = 'QUARTERLY',
440
- FULL_PAYMENT = 'FULL_PAYMENT',
441
- }
442
-
443
- export enum EXAM_ANSWER_SHEET_QUESTION_RESULT {
444
- INVALID = 'INVALID',
445
- VALID = 'VALID',
446
- NOT_ATTENDED = 'NOT_ATTENDED',
447
- }
448
-
449
- export enum LECTURE_SLOT_DURATION {
450
- HOUR = 60,
451
- HALF_HOUR = 30,
452
- }
453
-
454
- export enum SUBJECT_INDEX_TYPE {
455
- INSTITUTE = 'INSTITUTE',
456
- PRIVATE = 'PRIVATE',
457
- BATCH = 'BATCH',
458
- MASTER = 'MASTER',
459
- }
460
-
461
- export enum EXAM_GROUP_STATUS {
462
- PENDING = 'PENDING',
463
- PUBLISHED = 'PUBLISHED',
464
- CANCELED = 'CANCELED',
465
- }
466
-
467
- export enum EXAM_GROUP_STANDARD_RESULT {
468
- PENDING = 'PENDING',
469
- RESULT_OUT = 'RESULT_OUT',
470
- }
471
-
472
- export enum INQUIRY_REFERRED_BY {
473
- WALK_IN = 'WALK_IN',
474
- CALL_RECEIVED_FROM_INSTITUTE = 'CALL_RECEIVED_FROM_INSTITUTE',
475
- SOCIAL_MEDIA = 'SOCIAL_MEDIA',
476
- ADVERTISEMENT = 'ADVERTISEMENT',
477
- NONE_OF_THIS = 'NONE_OF_THIS',
478
- }
479
- export enum INQUIRY_STATUS {
480
- // REGISTERED = 'REGISTERED',
481
- // REGISTER = 'REGISTER',
482
- // REGISTRATION = 'REGISTRATION',
483
- ENROLL = 'ENROLL',
484
- NOT_ENROLL = 'NOT_ENROLL',
485
- }
486
-
487
- export enum IMAGE__NAME {
488
- PROFILE_PICTURE = 'PROFILE_PICTURE',
489
- SIGNATURE = 'SIGNATURE',
490
- AADHAR_CARD = 'AADHAR_CARD',
491
- PAN_CARD = 'PAN_CARD',
492
- PASSPORT_CARD = 'PASSPORT_CARD',
493
- VOTER_ID_CARD = 'VOTER_ID_CARD',
494
- DRIVING_LICENSE_CARD = 'DRIVING_LICENSE_CARD',
495
- LEAVING_CERTIFICATE = 'LEAVING_CERTIFICATE',
496
- RATION_CARD = 'RATION_CARD',
497
- BIRTH_CERTIFICATE = 'BIRTH_CERTIFICATE',
498
- ADDRESS_PROOF = 'ADDRESS_PROOF',
499
- INCOME_CERTIFICATE = 'INCOME_CERTIFICATE',
500
- CASTE_CERTIFICATE = 'CASTE_CERTIFICATE',
501
- EDUCATIONAL_CERTIFICATE = 'EDUCATIONAL_CERTIFICATE',
502
- EXPERIENCE_CERTIFICATE = 'EXPERIENCE_CERTIFICATE',
503
- APPOINTMENT_LETTER = 'APPOINTMENT_LETTER',
504
- SALARY_SLIP = 'SALARY_SLIP',
505
- OTHER_DOCUMENT = 'OTHER_DOCUMENT',
506
- SCHOOL_LEAVING_CERTIFICATE = 'SCHOOL_LEAVING_CERTIFICATE',
507
- MEDICAL_REPORT = 'MEDICAL_REPORT',
508
- RESUME = 'RESUME',
509
- }
510
-
511
- export enum CHAPTER_INDEX_TYPE {
512
- CHAPTER = 'CHAPTER',
513
- TOPIC = 'TOPIC',
514
- SUB_TOPIC = 'SUB_TOPIC',
515
- }
516
- export enum USER_CHAPTER_INDEX_STATUS {
517
- COMPLETED = 'COMPLETED',
518
- RUNNING = 'RUNNING',
519
- NOT_COMPLETED = 'NOT_COMPLETED',
520
- }
521
- export enum FEE_HISTORY_STATUS {
522
- COMPLETED = 'COMPLETED',
523
- PENDING = 'PENDING',
524
- }
525
- export enum CHAPTER_INDEX_FILE_TYPE {
526
- VIDEO = 'VIDEO',
527
- PDF_NOTE = 'PDF_NOTE',
528
- HOME_WORK = 'HOME_WORK',
529
- CLASS_WORK = 'CLASS_WORK',
530
- }
531
-
532
- export enum PARENTS_CHILDREN_CURRENT {
533
- PARENTS = 'PARENTS',
534
- CHILDREN = 'CHILDREN',
535
- CURRENT = 'CURRENT',
536
- }
537
-
538
- export enum USER_PAYOUT_TYPE {
539
- PERCENTAGE = 'PERCENTAGE',
540
- HOURLY = 'HOURLY',
541
- MONTHLY = 'MONTHLY',
542
- }
543
- export enum QDC_NAME {
544
- LAKSHMI_VIKAS_SANKUL_ANR02 = 'LAKSHMI_VIKAS_SANKUL_ANR02',
545
- }
546
- export enum SVA_NAME {
547
- LAKSHMI_VIKAS_SANKUL_ANR02 = 'LAKSHMI_VIKAS_SANKUL_ANR02',
548
- }
549
- export enum TRUST_TYPE {
550
- PRIVATE = 'PRIVATE',
551
- PUBLIC = 'PUBLIC',
552
- RELIGIOUS = 'RELIGIOUS',
553
- CHARITABLE = 'CHARITABLE',
554
- SOCIETY = 'SOCIETY',
555
- GOVERNMENT = 'GOVERNMENT',
556
- FAMILY = 'FAMILY',
557
- }
558
- export enum TRUST_REGISTERED_UNDER {
559
- // INDIAN_TRUST_ACT = 'INDIAN_TRUST_ACT',
560
- // SOCIETY_REGISTRATION_ACT = 'SOCIETY_REGISTRATION_ACT',
561
- // COMPANIES_ACT = 'COMPANIES_ACT',
562
- // RELIGIOUS_ENDOWMENTS_ACT = 'RELIGIOUS_ENDOWMENTS_ACT',
563
- // CHARITABLE_ENDOWMENTS_ACT = 'CHARITABLE_ENDOWMENTS_ACT',
564
- THE_SOCIETIES_REGISTRATION_ACT_1860 = 'THE_SOCIETIES_REGISTRATION_ACT_1860',
565
- THE_BOMBAY_PUBLIC_ACT_1950 = 'THE_BOMBAY_PUBLIC_TRUSTS_ACT_1950',
566
- OTHER = 'OTHER',
567
- }
568
- export enum DESIGNATION_OF_PERSON {
569
- TRUSTEE = 'TRUSTEE',
570
- MANAGING_TRUSTEE = 'MANAGING_TRUSTEE',
571
- DIRECTOR = 'DIRECTOR',
572
- MANAGING_DIRECTOR = 'MANAGING_DIRECTOR',
573
- }
574
-
575
- export enum PROPERTY_STATUS {
576
- RENTED = 'RENTED',
577
- OWNED = 'OWNED',
578
- }
579
- export enum BOOLEAN_STATUS {
580
- YES = 'YES',
581
- NO = 'NO',
582
- }
583
- export enum FEE_TYPE {
584
- 'GENERAL_FEE' = 'GENERAL_FEE',
585
- 'SERVICE_FEE' = 'SERVICE_FEE',
586
- }
587
- export enum IS_PRINCIPAL {
588
- NO = 'NO',
589
- PERMANENT = 'PERMANENT',
590
- IN_CHARGE = 'IN_CHARGE',
591
- }
592
- export enum CATEGORY {
593
- ST = 'ST',
594
- OBC = 'OBC',
595
- SC = 'SC',
596
- GENERAL = 'GENERAL',
597
- EWS = 'EWS',
598
- }
599
-
600
- export enum NATIONALITY {
601
- INDIAN = 'INDIAN',
602
- AMERICAN = 'AMERICAN',
603
- BRITISH = 'BRITISH',
604
- CANADIAN = 'CANADIAN',
605
- AUSTRALIAN = 'AUSTRALIAN',
606
- CHINESE = 'CHINESE',
607
- JAPANESE = 'JAPANESE',
608
- FRENCH = 'FRENCH',
609
- GERMAN = 'GERMAN',
610
- ITALIAN = 'ITALIAN',
611
- SPANISH = 'SPANISH',
612
- RUSSIAN = 'RUSSIAN',
613
- BRAZILIAN = 'BRAZILIAN',
614
- SOUTH_AFRICAN = 'SOUTH_AFRICAN',
615
- SAUDI = 'SAUDI',
616
- UAE = 'UAE',
617
- BANGLADESHI = 'BANGLADESHI',
618
- PAKISTANI = 'PAKISTANI',
619
- SRI_LANKAN = 'SRI_LANKAN',
620
- NEPALESE = 'NEPALESE',
621
- BHUTANESE = 'BHUTANESE',
622
- }
623
-
624
- export enum RELIGION_CASTE {
625
- HINDU = 'HINDU',
626
- MUSLIM = 'MUSLIM',
627
- CHRISTIAN = 'CHRISTIAN',
628
- SIKH = 'SIKH',
629
- BUDDHIST = 'BUDDHIST',
630
- JAIN = 'JAIN',
631
- JEWISH = 'JEWISH',
632
- PARSI = 'PARSI',
633
- }
634
-
635
- export enum CASTE {
636
- GENERAL = 'GENERAL',
637
- OBC = 'OBC',
638
- SC = 'SC',
639
- ST = 'ST',
640
- BRAHMIN = 'BRAHMIN',
641
- KSHATRIYA = 'KSHATRIYA',
642
- VAISHYA = 'VAISHYA',
643
- SHUDRA = 'SHUDRA',
644
- MARATHA = 'MARATHA',
645
- RAJPUT = 'RAJPUT',
646
- PANDIT = 'PANDIT',
647
- KAYASTHA = 'KAYASTHA',
648
- REDDY = 'REDDY',
649
- NAIR = 'NAIR',
650
- GOUNDAR = 'GOUNDAR',
651
- IYENGAR = 'IYENGAR',
652
- IYER = 'IYER',
653
- YADAV = 'YADAV',
654
- BHUMIHAR = 'BHUMIHAR',
655
- KOLI = 'KOLI',
656
- }
657
-
658
- export const SCHOOL_INFORMATION_STEP = 7 as const;
659
- // SCHOOL_INFORMATION = 'SCHOOL_INFORMATION',
660
- // TRUST_INFORMATION = 'TRUST_INFORMATION',
661
- // TRUSTIES_INFORMATION = 'TRUSTIES_INFORMATION',
662
- // BUILDING_INFORMATION = 'BUILDING_INFORMATION',
663
- // TEACHER_INFORMATION = 'TEACHER_INFORMATION',
664
- // PRINCIPLE_INFORMATION = 'PRINCIPLE_INFORMATION',
665
- // OTHER_INFORMATION = 'OTHER_INFORMATION',
666
-
667
- export enum LECTURE_STATUS {
668
- COMPLETED = 'COMPLETED',
669
- RUNNING = 'RUNNING',
670
- NOT_STARTED = 'NOT_STARTED',
671
- }
672
-
673
- export enum LECTURE_TITLE {
674
- LECTURE = 'LECTURE',
675
- BREAK = 'BREAK',
676
- PRAYER = 'PRAYER',
677
- PREPARATION_TIME = 'PREPARATION_TIME',
678
- ACTIVITY = 'ACTIVITY',
679
- }
680
-
681
- export enum TO_DO_STATUS {
682
- COMPLETED = 'COMPLETED',
683
- RUNNING = 'RUNNING',
684
- PENDING = 'PENDING',
685
- }
686
-
687
- export const SVG_URL_PATH = 'public/svg';
688
- export const UPLOAD_PATH = 'public/uploads';
689
-
690
- export const DEFAULT_INSTITUTED_LOGO = 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXqqjmZohb-t9cT5vqbD1HgMUfSA8bzoKdjg&s';
691
-
692
-
693
- export const PINCODE_API_URL = 'https://api.postalpincode.in/pincode/';
694
-
695
- export enum EMAIL_TEMPLATES {
696
- CREATE_GUARDIAN_VERIFICATION = 'createGuardianVerificatin',
697
- PARENTS_VERIFICATION = 'parentsVerification',
698
- // PARENTS_VERIFICATION = 'parentsVerificationOld',
699
- TEACHER_VERIFICATION = 'teacherVerification',
700
- STUDENT_VERIFICATION = 'studentVerification',
701
- PARENTS_CREDENTIALS_TEMPLATE = 'parentCredentialsTemplate',
702
- STUDENT_CREDENTIALS_TEMPLATE = 'studentCredentialsTemplate',
703
- COMMON_TEMPLATE = 'commonTemplate',
704
- CONTACT_FEEDBACK_TEMPLATE = 'contactFeedbackTemplate',
705
- }
706
- export enum PDF_TEMPLATES {
707
- FEE_INVOICE_TEMPLATE = 'feeInvoiceTemplate',
708
- GENERATE_ID_CARD = 'generateIdCard',
709
- GENERATE_RULE_PDF = 'generateRulePdf',
710
- COMMON_REPORT_EXPORT_TEMPLATE = 'commonReportExportTemplate',
711
- // FEE_INVOICE_TEMPLATE = 'htmlfee',
712
- }
713
-
714
- export enum EMAIL_SUBJECTS {
715
- CREATE_GUARDIAN_VERIFICATION = 'Verification Of Guardian Request',
716
- PARENTS_VERIFICATION = 'Verification Of Joining Institute Of Children',
717
- TEACHER_VERIFICATION = 'Verification Of Joining Institute as Teacher',
718
- STUDENT_VERIFICATION = 'Verification Of Joining School as Student',
719
- CONTACT_SUPPORT = 'Contact Support for Institute',
720
- FEEDBACK = 'Feedback for Institute',
721
- }
722
- export const bankAccountRegexMap: Record<
723
- | 'SBIN'
724
- | 'HDFC'
725
- | 'ICIC'
726
- | 'UTIB'
727
- | 'PUNB'
728
- | 'BARB'
729
- | 'KKBK'
730
- | 'YESB'
731
- | 'CNRB'
732
- | 'UBIN'
733
- | 'INDB'
734
- | 'IDFB'
735
- | 'FDRL'
736
- | 'HSBC'
737
- | 'RATN'
738
- | 'SIBL'
739
- | 'KVBL'
740
- | 'UCBA'
741
- | 'BKID'
742
- | 'CBIN'
743
- | 'IOBA'
744
- | 'DBSS'
745
- | 'VIJB'
746
- | 'BKDN'
747
- | 'SYNB'
748
- | 'TMBL'
749
- | 'CIUB'
750
- | 'SCBL'
751
- | 'SRCB',
752
- RegExp
753
- > = {
754
- SBIN: /^[0-9]{11}$/, // State Bank of India
755
- HDFC: /^[0-9]{14}$/, // HDFC Bank
756
- ICIC: /^[0-9]{12}$/, // ICICI Bank
757
- UTIB: /^[0-9]{15}$/, // Axis Bank
758
- PUNB: /^[0-9]{16}$/, // Punjab National Bank
759
- BARB: /^[0-9]{14}$/, // Bank of Baroda
760
- KKBK: /^[0-9]{10}$/, // Kotak Mahindra Bank
761
- YESB: /^[0-9]{15}$/, // Yes Bank
762
- CNRB: /^[0-9]{13}$/, // Canara Bank
763
- UBIN: /^[0-9]{12}$/, // Union Bank of India
764
- INDB: /^[0-9]{14}$/, // IndusInd Bank
765
- IDFB: /^[0-9]{11}$/, // IDFC First Bank
766
-
767
- // Additional banks (prefix-based)
768
- FDRL: /^[0-9]{14}$/, // Federal Bank
769
- HSBC: /^[0-9]{9,12}$/, // HSBC Bank
770
- RATN: /^[0-9]{10,14}$/, // RBL Bank
771
- SIBL: /^[0-9]{16}$/, // South Indian Bank
772
- KVBL: /^[0-9]{15}$/, // Karur Vysya Bank
773
- UCBA: /^[0-9]{14}$/, // UCO Bank
774
- BKID: /^[0-9]{15}$/, // Bank of India
775
- CBIN: /^[0-9]{15}$/, // Central Bank of India
776
- IOBA: /^[0-9]{15}$/, // Indian Overseas Bank
777
- DBSS: /^[0-9]{12}$/, // DBS Bank
778
- VIJB: /^[0-9]{15}$/, // Vijaya Bank
779
- BKDN: /^[0-9]{14}$/, // Dena Bank
780
- SYNB: /^[0-9]{13}$/, // Syndicate Bank
781
- TMBL: /^[0-9]{15}$/, // Tamilnad Mercantile Bank
782
- CIUB: /^[0-9]{15}$/, // City Union Bank
783
- SCBL: /^[0-9]{11,13}$/, // Standard Chartered Bank
784
- SRCB: /^[0-9]{11,15}$/, // Saraswat Co-op Bank
785
- };
786
-
787
- export const templateKeyWord = [
788
- {
789
- keyWord: '@studentName',
790
- name: '[student name]',
791
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
792
- value: (data: any) => {
793
- return `${data.firstName} ${data.lastName}`;
794
- },
795
- },
796
- {
797
- name: '[amount]',
798
- keyWord: '@amount',
799
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
800
- value: (data: any) => {
801
- return data.amount;
802
- },
803
- },
804
- {
805
- name: '[due date]',
806
- keyWord: '@dueDate',
807
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
808
- value: (data: any) => {
809
- return data.dueDate;
810
- },
811
- },
812
- ];
813
-
814
- export const DEVICE_TYPE = {
815
- INSTITUTED: [USER_TYPES.MASTER_ADMIN, USER_TYPES.ADMIN, USER_TYPES.INSTITUTE_MASTER_ADMIN, USER_TYPES.INSTITUTE_ADMIN, USER_TYPES.TEACHER],
816
- STUDENT: [USER_TYPES.MASTER_ADMIN, USER_TYPES.ADMIN, USER_TYPES.STUDENT, USER_TYPES.PARENTS],
817
- };
818
-
819
- export const USER_DETAILS_FILED = ['intersetedEntities', 'qualifications', 'bio', 'files', 'experiences'];
820
-
821
- export enum TASK_MANAGEMENT_STATUS {
822
- PENDING = 'PENDING',
823
- PROCESSING = 'PROCESSING',
824
- COMPLETED = 'COMPLETED',
825
- CANCELED = 'CANCELED',
826
- }
827
-
828
- export enum BOOK_ASSESSMENT_DATE_STATUS {
829
- PENDING = 'PENDING',
830
- COMPLETED = 'COMPLETED',
831
- }
832
-
833
- export enum USER_BOOK_ASSESSMENT_STATUS {
834
- PENDING = 'PENDING',
835
- COMPLETED = 'COMPLETED',
836
- }
837
-
838
- export enum PROJECT_ASSESSMENT_OPTION_STATUS {
839
- PENDING = 'PENDING',
840
- COMPLETED = 'COMPLETED',
841
- }
842
-
843
- export enum NOTIFICATION_TYPE {
844
- PUSH = 'PUSH',
845
- SOCKET = 'SOCKET',
846
- }
847
-
848
- export enum NOTIFICATION_STATUS {
849
- SEND = 'SEND',
850
- PENDING = 'PENDING',
851
- VIEW = 'VIEW',
852
- }
853
-
854
- export enum NOTIFICATION_MODULE_TYPE {
855
- ANNOUCEMENT = 'ANNOUCEMENT',
856
- INSTITUTE_JOINING_REQUEST = 'INSTITUTE_JOINING_REQUEST',
857
- }
858
-
859
- export enum NOTIFICATION_ACTION {
860
- PUSH = 'PUSH',
861
- SOCKET = 'SOCKET',
862
- }
863
-
864
- export enum PLANNER_SYNC_STATUS {
865
- PENDING = 'PENDING',
866
- PROCESSING = 'PROCESSING',
867
- COMPLETED = 'COMPLETED',
868
- }
869
-
870
- export enum CONTACT_FEED_BACK_TYPE {
871
- CONTACT_SUPPORT = 'CONTACT_SUPPORT',
872
- FEEDBACK = 'FEEDBACK',
873
- }
874
- export enum DISCOUNT_TYPE {
875
- PERCENTAGE = 'PERCENTAGE',
876
- AMOUNT = 'AMOUNT',
877
- NONE = 'NONE',
878
- }
879
-
880
- export enum SUBSCRIPTION_PLAN_CHARGE_INTERVAL {
881
- MONTHLY = 'MONTHLY',
882
- YEARLY = 'YEARLY',
883
- }
884
-
885
- export enum VALID_CURRENCY {
886
- COIN = 'COIN',
887
- INR = 'INR',
888
- }
889
-
890
- export enum SUBSCRIPTION_PLAN_FILES_TYPE {
891
- ICON = 'ICON',
892
- TERMS_AND_CONDITIONS = 'TERMS_AND_CONDITIONS',
893
- }
894
-
895
- export enum SOCKET_EVENTS {
896
- REGISTER = 'REGISTER',
897
- SEND_FROM_SERVER_EVENT = 'TO_CLIENT',
898
- GET_FROM_CLIENT_EVENT = 'FROM_CLIENT',
899
- SEND_NOTIFICATIONS = 'SEND_NOTIFICATIONS',
900
- GET_NOTIFICATIONS = 'GET_NOTIFICATIONS',
901
- }
902
-
903
- export enum HOME_WORK_STATUS {
904
- COMPLETED = 'COMPLETED',
905
- NOT_COMPLETED = 'NOT_COMPLETED',
906
- LATE_COMPLETE = 'LATE_COMPLETE',
907
- FORGET_BOOK = 'FORGET_BOOK',
908
- }
909
-
910
- export enum LANGUAGES {
911
- ENGLISH = 'ENGLISH',
912
- HINDI = 'HINDI',
913
- GUJARATI = 'GUJARATI',
914
- }
915
- export enum PDF_CHEQUE_STATUS {
916
- ADDED = 'ADDED',
917
- DEPOSIT_TO_BANK = 'DEPOSIT_TO_BANK',
918
- RE_DEPOSIT_TO_BANK = 'RE_DEPOSIT_TO_BANK',
919
- BOUNCE = 'BOUNCE',
920
- CLEAR = 'CLEAR',
921
- }
922
- export enum PDF_CHEQUE_FREQUENCY {
923
- YEARLY = 'YEARLY',
924
- MONTHLY = 'MONTHLY',
925
- HALF_YEARLY = 'HALF_YEARLY',
926
- QUARTERLY = 'QUARTERLY',
927
- FULL_PAYMENT = 'FULL_PAYMENT',
928
- }
929
- export enum INVOICE_PAYMENT_TYPE {
930
- CASH = 'CASH',
931
- CREDIT = 'CREDIT',
932
- }
933
-
934
- export enum COLUMN_LIST_TITLE {
935
- FEE = 'FEE',
936
- DAILY_BOOK = 'DAILY_BOOK',
937
- FEE_HISTORY = 'FEE_HISTORY',
938
- USER_HAS_LEAVE = 'USER_HAS_LEAVE',
939
- FEES_COLLECTION = 'FEES_COLLECTION',
940
- USER_INSTITUTE_META = 'USER_INSTITUTE_META',
941
- SCHOOL_FEE_COLLECTION = 'SCHOOL_FEE_COLLECTION',
942
- USER_HAS_LEAVE_HISTORY = 'USER_HAS_LEAVE_HISTORY',
943
- }
944
-
945
- export enum PURCHASE_STATUS {
946
- PAID = 'PAID',
947
- UNPAID = 'UNPAID',
948
- }
949
-
950
- export enum INVOICE_TYPE {
951
- CHANLAN = 'CHANLAN',
952
- INVOICE = 'INVOICE',
953
- CHEQUE = 'CHEQUE',
954
- RECEIPT = 'RECEIPT',
955
- }
956
-
957
- export enum TEACHER_TYPE {
958
- SWIPE = 'SWIPE',
959
- REPLACE = 'REPLACE',
960
- }
961
-
962
- export enum REPLACE_TEACHER_STATUS {
963
- PENDING = 'PENDING',
964
- SYNC = 'SYNC',
965
- COMPLETED = 'COMPLETED',
966
- }
967
- export enum WALLET_HISTORY_TYPE {
968
- BUY = 'BUY',
969
- SEND = 'SEND',
970
- RECEIVE = 'RECEIVE',
971
- REFUND = 'REFUND',
972
- }
973
-
974
- export enum WALLET_HISTORY_ITEM_TYPE {
975
- COIN = 'COIN',
976
- STORAGE = 'STORAGE',
977
- PLAN = 'PLAN',
978
- USER = 'USER',
979
- }
980
-
981
- export enum WALLET_HISTORY_ACTION {
982
- DEBIT = 'DEBIT',
983
- CREDIT = 'CREDIT',
984
- }
985
-
986
- export enum WALLET_HISTORY_STATUS {
987
- PENDING = 'PENDING',
988
- PROCESSING = 'PROCESSING',
989
- FAILED = 'FAILED',
990
- COMPLETED = 'COMPLETED',
991
- EXPIRED = 'EXPIRED',
992
- }
993
-
994
- export enum WALLET_TRANSACTION_USERS_TYPE {
995
- SENDER = 'SENDER',
996
- RECEIVER = 'RECEIVER',
997
- SELF = 'SELF',
998
- }
999
-
1000
- export enum INSTITUTE_SUBSCRIPTION_PLAN_STATUS {
1001
- ACTIVE = 'ACTIVE',
1002
- EXPIRED = 'EXPIRED',
1003
- EXPIRED_SOON = 'EXPIRED_SOON',
1004
- }
1005
-
1006
- export enum CHARGE_PER_TRANSACTION_ITEM_UNIT {
1007
- USER = 2,
1008
- STUDENT = 1,
1009
- ONE_GB_STORAGE = 10,
1010
- }
1011
- export const ONE_GB_BYTES = 1073741824;
1012
- export enum JOB_ACTION {
1013
- PENDING = 'PENDING',
1014
- VIEW = 'VIEW',
1015
- PROCESSING = 'PROCESSING',
1016
- ON_HOLD = 'ON_HOLD',
1017
- ACCEPTED = 'ACCEPTED',
1018
- REJECTED = 'REJECTED',
1019
- }
1020
-
1021
- export enum PAYMENT_GATEWAY_TYPES {
1022
- RAZORPAY = 'RAZORPAY',
1023
- PHONEPE = 'PHONEPE',
1024
- GOOGLEPAY = 'GOOGLEPAY',
1025
- COIN = 'COIN',
1026
- }
1027
-
1028
- export enum PAYMENT_METHODS {
1029
- DEBIT_CARD = 'DEBIT_CARD',
1030
- CREDIT_CARD = 'CREDIT_CARD',
1031
- UPI = 'UPI',
1032
- WALLET = 'WALLET',
1033
- }
1034
-
1035
- export const WALLET_TRANSACTION_VALID_DATE_IN_MINUTES = 60;
1036
-
1037
- export const WALLET_TRANSACTION_VALID_DATE_FOR_OTP_IN_MINUTES = 2;
1038
-
1039
- export const COIN_PURCHASE_GST_PERCENTAGE = 18;
1040
- ;
1041
-
1042
- export const INITIAL_FREE_COIN = 500;
1043
-
1044
- export const INITIAL_FREE_STORAGE_IN_GB = 1;
1045
-
1046
- export const FREE_SUBSCRIPTION_SEQUENCE = [1];