@kipicore/dbcore 1.1.13 → 1.1.15
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.
- package/dist/cjs/constants/app.js +1105 -0
- package/dist/cjs/helpers/utils.d.ts +173 -0
- package/dist/cjs/helpers/utils.js +682 -0
- package/dist/cjs/index.d.ts +419 -0
- package/dist/cjs/index.js +758 -0
- package/dist/cjs/interfaces/approvalRequestInterface.d.ts +14 -0
- package/dist/cjs/interfaces/userInstituteMetaInterface.d.ts +39 -0
- package/dist/cjs/models/mongodb/taskManagementModel.js +166 -0
- package/dist/cjs/models/psql/userModel.js +390 -0
- package/dist/cjs/services/Concrete/mongooseCommonService.js +106 -0
- package/dist/cjs/services/Concrete/sequelizeCommonService.js +123 -0
- package/dist/esm/configs/aws.d.ts +2 -0
- package/dist/esm/configs/aws.js +9 -0
- package/dist/esm/configs/env.d.ts +61 -0
- package/dist/esm/configs/env.js +132 -0
- package/dist/esm/constants/app.d.ts +871 -0
- package/dist/esm/constants/app.js +1099 -0
- package/dist/esm/constants/defaultModelAttributes.d.ts +17 -0
- package/dist/esm/constants/defaultModelAttributes.js +18 -0
- package/dist/esm/constants/errorMessages.d.ts +1055 -0
- package/dist/esm/constants/errorMessages.js +1161 -0
- package/dist/esm/constants/httpStatusCode.d.ts +26 -0
- package/dist/esm/constants/httpStatusCode.js +27 -0
- package/dist/esm/constants/successMessages.d.ts +699 -0
- package/dist/esm/constants/successMessages.js +807 -0
- package/dist/esm/helpers/s3Uploader.d.ts +3 -0
- package/dist/esm/helpers/s3Uploader.js +53 -0
- package/dist/esm/helpers/utils.d.ts +173 -0
- package/dist/esm/helpers/utils.js +603 -0
- package/dist/esm/index.d.ts +419 -0
- package/dist/esm/index.js +151 -0
- package/dist/esm/interfaces/academicCalendarInterface.d.ts +9 -0
- package/dist/esm/interfaces/academicCalendarInterface.js +1 -0
- package/dist/esm/interfaces/accountHasReceiptDetailsInterface.d.ts +17 -0
- package/dist/esm/interfaces/accountHasReceiptDetailsInterface.js +1 -0
- package/dist/esm/interfaces/announcementInterface.d.ts +19 -0
- package/dist/esm/interfaces/announcementInterface.js +1 -0
- package/dist/esm/interfaces/approvalRequestInterface.d.ts +14 -0
- package/dist/esm/interfaces/approvalRequestInterface.js +1 -0
- package/dist/esm/interfaces/areaInterface.d.ts +5 -0
- package/dist/esm/interfaces/areaInterface.js +1 -0
- package/dist/esm/interfaces/attendanceInterface.d.ts +21 -0
- package/dist/esm/interfaces/attendanceInterface.js +1 -0
- package/dist/esm/interfaces/bankAccountDetailsInterface.d.ts +14 -0
- package/dist/esm/interfaces/bankAccountDetailsInterface.js +1 -0
- package/dist/esm/interfaces/bannerInterface.d.ts +15 -0
- package/dist/esm/interfaces/bannerInterface.js +1 -0
- package/dist/esm/interfaces/batchInterface.d.ts +18 -0
- package/dist/esm/interfaces/batchInterface.js +1 -0
- package/dist/esm/interfaces/batchSubjectBookAssessmentInterface.d.ts +9 -0
- package/dist/esm/interfaces/batchSubjectBookAssessmentInterface.js +1 -0
- package/dist/esm/interfaces/batchSubjectProjectAssessmentInterface.d.ts +12 -0
- package/dist/esm/interfaces/batchSubjectProjectAssessmentInterface.js +1 -0
- package/dist/esm/interfaces/blogInterface.d.ts +46 -0
- package/dist/esm/interfaces/blogInterface.js +1 -0
- package/dist/esm/interfaces/bookAssessmentDateInterface.d.ts +8 -0
- package/dist/esm/interfaces/bookAssessmentDateInterface.js +1 -0
- package/dist/esm/interfaces/careerInterface.d.ts +12 -0
- package/dist/esm/interfaces/careerInterface.js +1 -0
- package/dist/esm/interfaces/categoriesInterface.d.ts +8 -0
- package/dist/esm/interfaces/categoriesInterface.js +1 -0
- package/dist/esm/interfaces/certificatesHistoryInterface.d.ts +9 -0
- package/dist/esm/interfaces/certificatesHistoryInterface.js +1 -0
- package/dist/esm/interfaces/certificatesManagementInterface.d.ts +11 -0
- package/dist/esm/interfaces/certificatesManagementInterface.js +1 -0
- package/dist/esm/interfaces/cityInterface.d.ts +12 -0
- package/dist/esm/interfaces/cityInterface.js +1 -0
- package/dist/esm/interfaces/classRoomInterface.d.ts +13 -0
- package/dist/esm/interfaces/classRoomInterface.js +1 -0
- package/dist/esm/interfaces/cloudStorageInterface.d.ts +15 -0
- package/dist/esm/interfaces/cloudStorageInterface.js +1 -0
- package/dist/esm/interfaces/coinPurchaseOfferInterface.d.ts +16 -0
- package/dist/esm/interfaces/coinPurchaseOfferInterface.js +1 -0
- package/dist/esm/interfaces/columnInterface.d.ts +15 -0
- package/dist/esm/interfaces/columnInterface.js +1 -0
- package/dist/esm/interfaces/commanInterface.d.ts +52 -0
- package/dist/esm/interfaces/commanInterface.js +1 -0
- package/dist/esm/interfaces/contactFeedBackInterface.d.ts +13 -0
- package/dist/esm/interfaces/contactFeedBackInterface.js +1 -0
- package/dist/esm/interfaces/countryInterface.d.ts +11 -0
- package/dist/esm/interfaces/countryInterface.js +1 -0
- package/dist/esm/interfaces/courseHasVisitorsInterface.d.ts +7 -0
- package/dist/esm/interfaces/courseHasVisitorsInterface.js +1 -0
- package/dist/esm/interfaces/courseInterface.d.ts +18 -0
- package/dist/esm/interfaces/courseInterface.js +1 -0
- package/dist/esm/interfaces/dailyBookInterface.d.ts +14 -0
- package/dist/esm/interfaces/dailyBookInterface.js +1 -0
- package/dist/esm/interfaces/dashboardManagementInterface.d.ts +19 -0
- package/dist/esm/interfaces/dashboardManagementInterface.js +1 -0
- package/dist/esm/interfaces/driverInterface.d.ts +21 -0
- package/dist/esm/interfaces/driverInterface.js +1 -0
- package/dist/esm/interfaces/entityGroupInterface.d.ts +12 -0
- package/dist/esm/interfaces/entityGroupInterface.js +1 -0
- package/dist/esm/interfaces/eventInterface.d.ts +21 -0
- package/dist/esm/interfaces/eventInterface.js +1 -0
- package/dist/esm/interfaces/examGroupInterface.d.ts +30 -0
- package/dist/esm/interfaces/examGroupInterface.js +1 -0
- package/dist/esm/interfaces/examHasAnswerSheetInterface.d.ts +23 -0
- package/dist/esm/interfaces/examHasAnswerSheetInterface.js +1 -0
- package/dist/esm/interfaces/examInterface.d.ts +38 -0
- package/dist/esm/interfaces/examInterface.js +1 -0
- package/dist/esm/interfaces/facilityInterface.d.ts +9 -0
- package/dist/esm/interfaces/facilityInterface.js +1 -0
- package/dist/esm/interfaces/featureActionInterface.d.ts +17 -0
- package/dist/esm/interfaces/featureActionInterface.js +1 -0
- package/dist/esm/interfaces/feeHistoryDetailsInterface.d.ts +17 -0
- package/dist/esm/interfaces/feeHistoryDetailsInterface.js +1 -0
- package/dist/esm/interfaces/feeHistoryInterface.d.ts +21 -0
- package/dist/esm/interfaces/feeHistoryInterface.js +1 -0
- package/dist/esm/interfaces/feeReminderInterface.d.ts +13 -0
- package/dist/esm/interfaces/feeReminderInterface.js +1 -0
- package/dist/esm/interfaces/feeReminderSettingInterface.d.ts +10 -0
- package/dist/esm/interfaces/feeReminderSettingInterface.js +1 -0
- package/dist/esm/interfaces/feeReminderTypeInterface.d.ts +10 -0
- package/dist/esm/interfaces/feeReminderTypeInterface.js +1 -0
- package/dist/esm/interfaces/feeTypeHasTermsInterface.d.ts +12 -0
- package/dist/esm/interfaces/feeTypeHasTermsInterface.js +1 -0
- package/dist/esm/interfaces/feeTypeInterface.d.ts +13 -0
- package/dist/esm/interfaces/feeTypeInterface.js +1 -0
- package/dist/esm/interfaces/feedBackInterface.d.ts +19 -0
- package/dist/esm/interfaces/feedBackInterface.js +1 -0
- package/dist/esm/interfaces/feesCollectionInterface.d.ts +19 -0
- package/dist/esm/interfaces/feesCollectionInterface.js +1 -0
- package/dist/esm/interfaces/fileStorageInterface.d.ts +14 -0
- package/dist/esm/interfaces/fileStorageInterface.js +1 -0
- package/dist/esm/interfaces/floorManagementInterface.d.ts +9 -0
- package/dist/esm/interfaces/floorManagementInterface.js +1 -0
- package/dist/esm/interfaces/generateIdCardInterface.d.ts +8 -0
- package/dist/esm/interfaces/generateIdCardInterface.js +1 -0
- package/dist/esm/interfaces/greetingsInterface.d.ts +12 -0
- package/dist/esm/interfaces/greetingsInterface.js +1 -0
- package/dist/esm/interfaces/holidayInterface.d.ts +22 -0
- package/dist/esm/interfaces/holidayInterface.js +1 -0
- package/dist/esm/interfaces/homeworkInterface.d.ts +13 -0
- package/dist/esm/interfaces/homeworkInterface.js +1 -0
- package/dist/esm/interfaces/informationSupportInterface.d.ts +15 -0
- package/dist/esm/interfaces/informationSupportInterface.js +1 -0
- package/dist/esm/interfaces/inquiryInterface.d.ts +54 -0
- package/dist/esm/interfaces/inquiryInterface.js +1 -0
- package/dist/esm/interfaces/instituteEntityInterface.d.ts +16 -0
- package/dist/esm/interfaces/instituteEntityInterface.js +1 -0
- package/dist/esm/interfaces/instituteEntityTypeInterface.d.ts +10 -0
- package/dist/esm/interfaces/instituteEntityTypeInterface.js +1 -0
- package/dist/esm/interfaces/instituteInterface.d.ts +35 -0
- package/dist/esm/interfaces/instituteInterface.js +1 -0
- package/dist/esm/interfaces/instituteSubscriptionPlanInterface.d.ts +21 -0
- package/dist/esm/interfaces/instituteSubscriptionPlanInterface.js +1 -0
- package/dist/esm/interfaces/inventoryHistoryInterface.d.ts +17 -0
- package/dist/esm/interfaces/inventoryHistoryInterface.js +1 -0
- package/dist/esm/interfaces/inventoryInterface.d.ts +15 -0
- package/dist/esm/interfaces/inventoryInterface.js +1 -0
- package/dist/esm/interfaces/invoiceInterface.d.ts +31 -0
- package/dist/esm/interfaces/invoiceInterface.js +1 -0
- package/dist/esm/interfaces/jobApplyInterface.d.ts +35 -0
- package/dist/esm/interfaces/jobApplyInterface.js +1 -0
- package/dist/esm/interfaces/lectureHistoryInterface.d.ts +24 -0
- package/dist/esm/interfaces/lectureHistoryInterface.js +1 -0
- package/dist/esm/interfaces/lectureInterface.d.ts +26 -0
- package/dist/esm/interfaces/lectureInterface.js +1 -0
- package/dist/esm/interfaces/masterLeaveInterface.d.ts +13 -0
- package/dist/esm/interfaces/masterLeaveInterface.js +1 -0
- package/dist/esm/interfaces/moduleFeatureInterface.d.ts +16 -0
- package/dist/esm/interfaces/moduleFeatureInterface.js +1 -0
- package/dist/esm/interfaces/moduleInterface.d.ts +15 -0
- package/dist/esm/interfaces/moduleInterface.js +1 -0
- package/dist/esm/interfaces/offersInterface.d.ts +18 -0
- package/dist/esm/interfaces/offersInterface.js +1 -0
- package/dist/esm/interfaces/paymentTermsInterface.d.ts +15 -0
- package/dist/esm/interfaces/paymentTermsInterface.js +1 -0
- package/dist/esm/interfaces/pdcChequeInterface.d.ts +16 -0
- package/dist/esm/interfaces/pdcChequeInterface.js +1 -0
- package/dist/esm/interfaces/pdcHistoryInterface.d.ts +17 -0
- package/dist/esm/interfaces/pdcHistoryInterface.js +1 -0
- package/dist/esm/interfaces/photosGalleryInterface.d.ts +17 -0
- package/dist/esm/interfaces/photosGalleryInterface.js +1 -0
- package/dist/esm/interfaces/pincodeInterface.d.ts +15 -0
- package/dist/esm/interfaces/pincodeInterface.js +1 -0
- package/dist/esm/interfaces/plannerInterface.d.ts +32 -0
- package/dist/esm/interfaces/plannerInterface.js +1 -0
- package/dist/esm/interfaces/productInterface.d.ts +10 -0
- package/dist/esm/interfaces/productInterface.js +1 -0
- package/dist/esm/interfaces/projectAssessmentOptionInterface.d.ts +8 -0
- package/dist/esm/interfaces/projectAssessmentOptionInterface.js +1 -0
- package/dist/esm/interfaces/replaceTeacherInterface.d.ts +22 -0
- package/dist/esm/interfaces/replaceTeacherInterface.js +1 -0
- package/dist/esm/interfaces/roleInterface.d.ts +26 -0
- package/dist/esm/interfaces/roleInterface.js +1 -0
- package/dist/esm/interfaces/rulesRegulationInterface.d.ts +10 -0
- package/dist/esm/interfaces/rulesRegulationInterface.js +1 -0
- package/dist/esm/interfaces/schoolFeeCollectionInterface.d.ts +13 -0
- package/dist/esm/interfaces/schoolFeeCollectionInterface.js +1 -0
- package/dist/esm/interfaces/schoolFeeInterface.d.ts +21 -0
- package/dist/esm/interfaces/schoolFeeInterface.js +1 -0
- package/dist/esm/interfaces/schoolOfferInterface.d.ts +20 -0
- package/dist/esm/interfaces/schoolOfferInterface.js +1 -0
- package/dist/esm/interfaces/sendNotificationInerface.d.ts +20 -0
- package/dist/esm/interfaces/sendNotificationInerface.js +1 -0
- package/dist/esm/interfaces/slotInterface.d.ts +8 -0
- package/dist/esm/interfaces/slotInterface.js +1 -0
- package/dist/esm/interfaces/stateInterface.d.ts +11 -0
- package/dist/esm/interfaces/stateInterface.js +1 -0
- package/dist/esm/interfaces/subCategoriesInterface.d.ts +9 -0
- package/dist/esm/interfaces/subCategoriesInterface.js +1 -0
- package/dist/esm/interfaces/subjectHasFeeInterface.d.ts +7 -0
- package/dist/esm/interfaces/subjectHasFeeInterface.js +1 -0
- package/dist/esm/interfaces/subjectHasPayFeeHistoryInterface.d.ts +9 -0
- package/dist/esm/interfaces/subjectHasPayFeeHistoryInterface.js +1 -0
- package/dist/esm/interfaces/subjectIndexInterface.d.ts +48 -0
- package/dist/esm/interfaces/subjectIndexInterface.js +1 -0
- package/dist/esm/interfaces/subscriptionPlanInterface.d.ts +29 -0
- package/dist/esm/interfaces/subscriptionPlanInterface.js +1 -0
- package/dist/esm/interfaces/syllabusInterface.d.ts +9 -0
- package/dist/esm/interfaces/syllabusInterface.js +1 -0
- package/dist/esm/interfaces/taskManagementInterface.d.ts +24 -0
- package/dist/esm/interfaces/taskManagementInterface.js +1 -0
- package/dist/esm/interfaces/testimonialInterface.d.ts +12 -0
- package/dist/esm/interfaces/testimonialInterface.js +1 -0
- package/dist/esm/interfaces/toDoInterface.d.ts +11 -0
- package/dist/esm/interfaces/toDoInterface.js +1 -0
- package/dist/esm/interfaces/tokenInterface.d.ts +27 -0
- package/dist/esm/interfaces/tokenInterface.js +1 -0
- package/dist/esm/interfaces/tripInterface.d.ts +13 -0
- package/dist/esm/interfaces/tripInterface.js +1 -0
- package/dist/esm/interfaces/typeManagementInterface.d.ts +11 -0
- package/dist/esm/interfaces/typeManagementInterface.js +1 -0
- package/dist/esm/interfaces/uniqueNumberCounterInterface.d.ts +11 -0
- package/dist/esm/interfaces/uniqueNumberCounterInterface.js +1 -0
- package/dist/esm/interfaces/userBookAssessmentInterface.d.ts +10 -0
- package/dist/esm/interfaces/userBookAssessmentInterface.js +1 -0
- package/dist/esm/interfaces/userDetailsInterface.d.ts +122 -0
- package/dist/esm/interfaces/userDetailsInterface.js +1 -0
- package/dist/esm/interfaces/userFeeTypeByAccountInterface.d.ts +19 -0
- package/dist/esm/interfaces/userFeeTypeByAccountInterface.js +1 -0
- package/dist/esm/interfaces/userFeeTypeInterface.d.ts +16 -0
- package/dist/esm/interfaces/userFeeTypeInterface.js +1 -0
- package/dist/esm/interfaces/userHasAnnouncementInterface.d.ts +9 -0
- package/dist/esm/interfaces/userHasAnnouncementInterface.js +1 -0
- package/dist/esm/interfaces/userHasBatchInterface.d.ts +7 -0
- package/dist/esm/interfaces/userHasBatchInterface.js +1 -0
- package/dist/esm/interfaces/userHasCourseInterface.d.ts +13 -0
- package/dist/esm/interfaces/userHasCourseInterface.js +1 -0
- package/dist/esm/interfaces/userHasDeviceInterface.d.ts +10 -0
- package/dist/esm/interfaces/userHasDeviceInterface.js +1 -0
- package/dist/esm/interfaces/userHasFeeTermsInterface.d.ts +37 -0
- package/dist/esm/interfaces/userHasFeeTermsInterface.js +1 -0
- package/dist/esm/interfaces/userHasFileInterface.d.ts +11 -0
- package/dist/esm/interfaces/userHasFileInterface.js +1 -0
- package/dist/esm/interfaces/userHasHomeWorkInterface.d.ts +11 -0
- package/dist/esm/interfaces/userHasHomeWorkInterface.js +1 -0
- package/dist/esm/interfaces/userHasInventoryHistoryInterface.d.ts +20 -0
- package/dist/esm/interfaces/userHasInventoryHistoryInterface.js +1 -0
- package/dist/esm/interfaces/userHasInventoryInterface.d.ts +21 -0
- package/dist/esm/interfaces/userHasInventoryInterface.js +1 -0
- package/dist/esm/interfaces/userHasLeaveHistoryInterface.d.ts +16 -0
- package/dist/esm/interfaces/userHasLeaveHistoryInterface.js +1 -0
- package/dist/esm/interfaces/userHasLeaveInterface.d.ts +12 -0
- package/dist/esm/interfaces/userHasLeaveInterface.js +1 -0
- package/dist/esm/interfaces/userHasOfferInterface.d.ts +10 -0
- package/dist/esm/interfaces/userHasOfferInterface.js +1 -0
- package/dist/esm/interfaces/userHasParentInterface.d.ts +14 -0
- package/dist/esm/interfaces/userHasParentInterface.js +1 -0
- package/dist/esm/interfaces/userHasRoleInterface.d.ts +13 -0
- package/dist/esm/interfaces/userHasRoleInterface.js +1 -0
- package/dist/esm/interfaces/userHasRollNumberInterface.d.ts +8 -0
- package/dist/esm/interfaces/userHasRollNumberInterface.js +1 -0
- package/dist/esm/interfaces/userHasStorageInterface.d.ts +11 -0
- package/dist/esm/interfaces/userHasStorageInterface.js +1 -0
- package/dist/esm/interfaces/userHasSubjectFeeInterface.d.ts +9 -0
- package/dist/esm/interfaces/userHasSubjectFeeInterface.js +1 -0
- package/dist/esm/interfaces/userInstituteMetaInterface.d.ts +39 -0
- package/dist/esm/interfaces/userInstituteMetaInterface.js +1 -0
- package/dist/esm/interfaces/userInterface.d.ts +44 -0
- package/dist/esm/interfaces/userInterface.js +1 -0
- package/dist/esm/interfaces/userLeaveRequestInterface.d.ts +15 -0
- package/dist/esm/interfaces/userLeaveRequestInterface.js +1 -0
- package/dist/esm/interfaces/userMetaInterface.d.ts +13 -0
- package/dist/esm/interfaces/userMetaInterface.js +1 -0
- package/dist/esm/interfaces/userPayoutDetailsInterface.d.ts +14 -0
- package/dist/esm/interfaces/userPayoutDetailsInterface.js +1 -0
- package/dist/esm/interfaces/userPayoutHistoryInterface.d.ts +18 -0
- package/dist/esm/interfaces/userPayoutHistoryInterface.js +1 -0
- package/dist/esm/interfaces/userPayoutInterface.d.ts +12 -0
- package/dist/esm/interfaces/userPayoutInterface.js +1 -0
- package/dist/esm/interfaces/userProjectAssessmentOptionInterface.d.ts +10 -0
- package/dist/esm/interfaces/userProjectAssessmentOptionInterface.js +1 -0
- package/dist/esm/interfaces/userRequiredStepsInterface.d.ts +9 -0
- package/dist/esm/interfaces/userRequiredStepsInterface.js +1 -0
- package/dist/esm/interfaces/userSchoolMetaInterface.d.ts +115 -0
- package/dist/esm/interfaces/userSchoolMetaInterface.js +1 -0
- package/dist/esm/interfaces/vehicleInterface.d.ts +11 -0
- package/dist/esm/interfaces/vehicleInterface.js +1 -0
- package/dist/esm/interfaces/vendorManagementInterface.d.ts +19 -0
- package/dist/esm/interfaces/vendorManagementInterface.js +1 -0
- package/dist/esm/interfaces/videoAnalystInterface.d.ts +37 -0
- package/dist/esm/interfaces/videoAnalystInterface.js +1 -0
- package/dist/esm/interfaces/walletHistoryInterface.d.ts +15 -0
- package/dist/esm/interfaces/walletHistoryInterface.js +1 -0
- package/dist/esm/interfaces/walletInterface.d.ts +10 -0
- package/dist/esm/interfaces/walletInterface.js +1 -0
- package/dist/esm/interfaces/walletTransactionInterface.d.ts +34 -0
- package/dist/esm/interfaces/walletTransactionInterface.js +1 -0
- package/dist/esm/interfaces/workingDayInterface.d.ts +11 -0
- package/dist/esm/interfaces/workingDayInterface.js +1 -0
- package/dist/esm/interfaces/workingShiftInterface.d.ts +12 -0
- package/dist/esm/interfaces/workingShiftInterface.js +1 -0
- package/dist/esm/models/mongodb/approvalRequestModel.d.ts +4 -0
- package/dist/esm/models/mongodb/approvalRequestModel.js +61 -0
- package/dist/esm/models/mongodb/attendanceModel.d.ts +4 -0
- package/dist/esm/models/mongodb/attendanceModel.js +139 -0
- package/dist/esm/models/mongodb/blogModel.d.ts +4 -0
- package/dist/esm/models/mongodb/blogModel.js +56 -0
- package/dist/esm/models/mongodb/careerModel.d.ts +4 -0
- package/dist/esm/models/mongodb/careerModel.js +48 -0
- package/dist/esm/models/mongodb/certificatesHistoryModel.d.ts +4 -0
- package/dist/esm/models/mongodb/certificatesHistoryModel.js +23 -0
- package/dist/esm/models/mongodb/certificatesManagementModel.d.ts +4 -0
- package/dist/esm/models/mongodb/certificatesManagementModel.js +32 -0
- package/dist/esm/models/mongodb/columnModel.d.ts +4 -0
- package/dist/esm/models/mongodb/columnModel.js +40 -0
- package/dist/esm/models/mongodb/dailyBookModel.d.ts +4 -0
- package/dist/esm/models/mongodb/dailyBookModel.js +53 -0
- package/dist/esm/models/mongodb/dashboardManagementModel.d.ts +4 -0
- package/dist/esm/models/mongodb/dashboardManagementModel.js +76 -0
- package/dist/esm/models/mongodb/eventModel.d.ts +4 -0
- package/dist/esm/models/mongodb/eventModel.js +126 -0
- package/dist/esm/models/mongodb/examGroupModel.d.ts +4 -0
- package/dist/esm/models/mongodb/examGroupModel.js +249 -0
- package/dist/esm/models/mongodb/examHasAnswerSheetModel.d.ts +4 -0
- package/dist/esm/models/mongodb/examHasAnswerSheetModel.js +94 -0
- package/dist/esm/models/mongodb/examModel.d.ts +4 -0
- package/dist/esm/models/mongodb/examModel.js +226 -0
- package/dist/esm/models/mongodb/feeReminderTypeModel.d.ts +4 -0
- package/dist/esm/models/mongodb/feeReminderTypeModel.js +38 -0
- package/dist/esm/models/mongodb/feedBackModel.d.ts +4 -0
- package/dist/esm/models/mongodb/feedBackModel.js +76 -0
- package/dist/esm/models/mongodb/generateIdCardModel.d.ts +4 -0
- package/dist/esm/models/mongodb/generateIdCardModel.js +20 -0
- package/dist/esm/models/mongodb/holidayModel.d.ts +4 -0
- package/dist/esm/models/mongodb/holidayModel.js +132 -0
- package/dist/esm/models/mongodb/index.d.ts +2 -0
- package/dist/esm/models/mongodb/index.js +19 -0
- package/dist/esm/models/mongodb/informationSupportModel.d.ts +4 -0
- package/dist/esm/models/mongodb/informationSupportModel.js +61 -0
- package/dist/esm/models/mongodb/inquiryModel.d.ts +4 -0
- package/dist/esm/models/mongodb/inquiryModel.js +147 -0
- package/dist/esm/models/mongodb/invoiceModel.d.ts +4 -0
- package/dist/esm/models/mongodb/invoiceModel.js +99 -0
- package/dist/esm/models/mongodb/jobApplyModel.d.ts +4 -0
- package/dist/esm/models/mongodb/jobApplyModel.js +116 -0
- package/dist/esm/models/mongodb/photosGalleryModel.d.ts +4 -0
- package/dist/esm/models/mongodb/photosGalleryModel.js +51 -0
- package/dist/esm/models/mongodb/plannerModel.d.ts +4 -0
- package/dist/esm/models/mongodb/plannerModel.js +139 -0
- package/dist/esm/models/mongodb/plugin/addDefaultAttributesPlugin.d.ts +2 -0
- package/dist/esm/models/mongodb/plugin/addDefaultAttributesPlugin.js +60 -0
- package/dist/esm/models/mongodb/plugin/transformIdInQueryPlugin.d.ts +3 -0
- package/dist/esm/models/mongodb/plugin/transformIdInQueryPlugin.js +59 -0
- package/dist/esm/models/mongodb/plugin/transformIdInResponsePlugin.d.ts +3 -0
- package/dist/esm/models/mongodb/plugin/transformIdInResponsePlugin.js +58 -0
- package/dist/esm/models/mongodb/replaceTeacherModel.d.ts +4 -0
- package/dist/esm/models/mongodb/replaceTeacherModel.js +75 -0
- package/dist/esm/models/mongodb/schoolFeeModel.d.ts +4 -0
- package/dist/esm/models/mongodb/schoolFeeModel.js +140 -0
- package/dist/esm/models/mongodb/subjectIndexModel.d.ts +4 -0
- package/dist/esm/models/mongodb/subjectIndexModel.js +586 -0
- package/dist/esm/models/mongodb/subscriptionPlanModel.d.ts +4 -0
- package/dist/esm/models/mongodb/subscriptionPlanModel.js +97 -0
- package/dist/esm/models/mongodb/taskManagementModel.d.ts +4 -0
- package/dist/esm/models/mongodb/taskManagementModel.js +128 -0
- package/dist/esm/models/mongodb/uniqueNumberCounterModel.d.ts +4 -0
- package/dist/esm/models/mongodb/uniqueNumberCounterModel.js +48 -0
- package/dist/esm/models/mongodb/userDetailsModel.d.ts +5 -0
- package/dist/esm/models/mongodb/userDetailsModel.js +473 -0
- package/dist/esm/models/mongodb/userDoc.d.ts +10 -0
- package/dist/esm/models/mongodb/userDoc.js +6 -0
- package/dist/esm/models/mongodb/userInstituteMetaModel.d.ts +4 -0
- package/dist/esm/models/mongodb/userInstituteMetaModel.js +177 -0
- package/dist/esm/models/mongodb/userSchoolMetaModel.d.ts +7 -0
- package/dist/esm/models/mongodb/userSchoolMetaModel.js +547 -0
- package/dist/esm/models/mongodb/videoAnalystModel.d.ts +4 -0
- package/dist/esm/models/mongodb/videoAnalystModel.js +45 -0
- package/dist/esm/models/mongodb/walletTransactionModel.d.ts +4 -0
- package/dist/esm/models/mongodb/walletTransactionModel.js +128 -0
- package/dist/esm/models/psql/SubCategoriesModel.d.ts +17 -0
- package/dist/esm/models/psql/SubCategoriesModel.js +97 -0
- package/dist/esm/models/psql/academicCalendarModel.d.ts +18 -0
- package/dist/esm/models/psql/academicCalendarModel.js +89 -0
- package/dist/esm/models/psql/accountHasReceiptDetailsModel.d.ts +26 -0
- package/dist/esm/models/psql/accountHasReceiptDetailsModel.js +140 -0
- package/dist/esm/models/psql/announcementModel.d.ts +28 -0
- package/dist/esm/models/psql/announcementModel.js +193 -0
- package/dist/esm/models/psql/areaModel.d.ts +9 -0
- package/dist/esm/models/psql/areaModel.js +35 -0
- package/dist/esm/models/psql/bankAccountDetailsModel.d.ts +23 -0
- package/dist/esm/models/psql/bankAccountDetailsModel.js +95 -0
- package/dist/esm/models/psql/bannerModel.d.ts +24 -0
- package/dist/esm/models/psql/bannerModel.js +111 -0
- package/dist/esm/models/psql/batchModel.d.ts +27 -0
- package/dist/esm/models/psql/batchModel.js +217 -0
- package/dist/esm/models/psql/batchSubjectBookAssessmentModel.d.ts +18 -0
- package/dist/esm/models/psql/batchSubjectBookAssessmentModel.js +151 -0
- package/dist/esm/models/psql/batchSubjectProjectAssessmentModel.d.ts +21 -0
- package/dist/esm/models/psql/batchSubjectProjectAssessmentModel.js +149 -0
- package/dist/esm/models/psql/bookAssessmentDateModel.d.ts +17 -0
- package/dist/esm/models/psql/bookAssessmentDateModel.js +82 -0
- package/dist/esm/models/psql/categoriesModel.d.ts +17 -0
- package/dist/esm/models/psql/categoriesModel.js +75 -0
- package/dist/esm/models/psql/cityModel.d.ts +13 -0
- package/dist/esm/models/psql/cityModel.js +67 -0
- package/dist/esm/models/psql/classRoomModel.d.ts +22 -0
- package/dist/esm/models/psql/classRoomModel.js +121 -0
- package/dist/esm/models/psql/cloudStorageModel.d.ts +24 -0
- package/dist/esm/models/psql/cloudStorageModel.js +92 -0
- package/dist/esm/models/psql/coinPurchaseOfferModel.d.ts +25 -0
- package/dist/esm/models/psql/coinPurchaseOfferModel.js +98 -0
- package/dist/esm/models/psql/contactFeedBackModel.d.ts +22 -0
- package/dist/esm/models/psql/contactFeedBackModel.js +115 -0
- package/dist/esm/models/psql/countryModel.d.ts +14 -0
- package/dist/esm/models/psql/countryModel.js +41 -0
- package/dist/esm/models/psql/courseHasVisitorsModel.d.ts +16 -0
- package/dist/esm/models/psql/courseHasVisitorsModel.js +66 -0
- package/dist/esm/models/psql/courseModel.d.ts +27 -0
- package/dist/esm/models/psql/courseModel.js +131 -0
- package/dist/esm/models/psql/driverModel.d.ts +30 -0
- package/dist/esm/models/psql/driverModel.js +158 -0
- package/dist/esm/models/psql/entityGroupModel.d.ts +21 -0
- package/dist/esm/models/psql/entityGroupModel.js +95 -0
- package/dist/esm/models/psql/facilityModel.d.ts +18 -0
- package/dist/esm/models/psql/facilityModel.js +115 -0
- package/dist/esm/models/psql/featureActionModel.d.ts +22 -0
- package/dist/esm/models/psql/featureActionModel.js +90 -0
- package/dist/esm/models/psql/feeHistoryDetailsModel.d.ts +26 -0
- package/dist/esm/models/psql/feeHistoryDetailsModel.js +181 -0
- package/dist/esm/models/psql/feeHistoryModel.d.ts +30 -0
- package/dist/esm/models/psql/feeHistoryModel.js +328 -0
- package/dist/esm/models/psql/feeReminderModel.d.ts +22 -0
- package/dist/esm/models/psql/feeReminderModel.js +234 -0
- package/dist/esm/models/psql/feeReminderSettingModel.d.ts +19 -0
- package/dist/esm/models/psql/feeReminderSettingModel.js +85 -0
- package/dist/esm/models/psql/feeTypeHasTermsModel.d.ts +21 -0
- package/dist/esm/models/psql/feeTypeHasTermsModel.js +97 -0
- package/dist/esm/models/psql/feeTypeModel.d.ts +22 -0
- package/dist/esm/models/psql/feeTypeModel.js +120 -0
- package/dist/esm/models/psql/feesCollectionModel.d.ts +28 -0
- package/dist/esm/models/psql/feesCollectionModel.js +226 -0
- package/dist/esm/models/psql/fileStorageModel.d.ts +6 -0
- package/dist/esm/models/psql/fileStorageModel.js +81 -0
- package/dist/esm/models/psql/floorManagementModel.d.ts +18 -0
- package/dist/esm/models/psql/floorManagementModel.js +85 -0
- package/dist/esm/models/psql/greetingsModel.d.ts +21 -0
- package/dist/esm/models/psql/greetingsModel.js +113 -0
- package/dist/esm/models/psql/homeWorkModel.d.ts +22 -0
- package/dist/esm/models/psql/homeWorkModel.js +123 -0
- package/dist/esm/models/psql/index.d.ts +4 -0
- package/dist/esm/models/psql/index.js +80 -0
- package/dist/esm/models/psql/instituteEntityModel.d.ts +25 -0
- package/dist/esm/models/psql/instituteEntityModel.js +126 -0
- package/dist/esm/models/psql/instituteEntityTypeModel.d.ts +19 -0
- package/dist/esm/models/psql/instituteEntityTypeModel.js +69 -0
- package/dist/esm/models/psql/instituteModel.d.ts +44 -0
- package/dist/esm/models/psql/instituteModel.js +235 -0
- package/dist/esm/models/psql/instituteSubscriptionPlanModel.d.ts +33 -0
- package/dist/esm/models/psql/instituteSubscriptionPlanModel.js +181 -0
- package/dist/esm/models/psql/inventoryHistoryModel.d.ts +26 -0
- package/dist/esm/models/psql/inventoryHistoryModel.js +154 -0
- package/dist/esm/models/psql/inventoryModel.d.ts +24 -0
- package/dist/esm/models/psql/inventoryModel.js +127 -0
- package/dist/esm/models/psql/lectureHistoryModel.d.ts +32 -0
- package/dist/esm/models/psql/lectureHistoryModel.js +218 -0
- package/dist/esm/models/psql/lectureModel.d.ts +34 -0
- package/dist/esm/models/psql/lectureModel.js +471 -0
- package/dist/esm/models/psql/masterLeaveModel.d.ts +22 -0
- package/dist/esm/models/psql/masterLeaveModel.js +126 -0
- package/dist/esm/models/psql/moduleFeatureModel.d.ts +21 -0
- package/dist/esm/models/psql/moduleFeatureModel.js +93 -0
- package/dist/esm/models/psql/moduleModel.d.ts +20 -0
- package/dist/esm/models/psql/moduleModel.js +96 -0
- package/dist/esm/models/psql/offerModel.d.ts +27 -0
- package/dist/esm/models/psql/offerModel.js +139 -0
- package/dist/esm/models/psql/paymentTermsModel.d.ts +17 -0
- package/dist/esm/models/psql/paymentTermsModel.js +109 -0
- package/dist/esm/models/psql/pdcChequeModel.d.ts +25 -0
- package/dist/esm/models/psql/pdcChequeModel.js +133 -0
- package/dist/esm/models/psql/pdcHistoryModel.d.ts +26 -0
- package/dist/esm/models/psql/pdcHistoryModel.js +147 -0
- package/dist/esm/models/psql/pincodeModel.d.ts +23 -0
- package/dist/esm/models/psql/pincodeModel.js +74 -0
- package/dist/esm/models/psql/productModel.d.ts +19 -0
- package/dist/esm/models/psql/productModel.js +119 -0
- package/dist/esm/models/psql/projectAssessmentOptionModel.d.ts +17 -0
- package/dist/esm/models/psql/projectAssessmentOptionModel.js +85 -0
- package/dist/esm/models/psql/roleModel.d.ts +22 -0
- package/dist/esm/models/psql/roleModel.js +92 -0
- package/dist/esm/models/psql/rulesRegulationModel.d.ts +19 -0
- package/dist/esm/models/psql/rulesRegulationModel.js +67 -0
- package/dist/esm/models/psql/schoolFeeCollectionModel.d.ts +22 -0
- package/dist/esm/models/psql/schoolFeeCollectionModel.js +151 -0
- package/dist/esm/models/psql/schoolOfferModel.d.ts +29 -0
- package/dist/esm/models/psql/schoolOfferModel.js +162 -0
- package/dist/esm/models/psql/sendNotificationModel.d.ts +22 -0
- package/dist/esm/models/psql/sendNotificationModel.js +112 -0
- package/dist/esm/models/psql/slotModel.d.ts +17 -0
- package/dist/esm/models/psql/slotModel.js +94 -0
- package/dist/esm/models/psql/stateModel.d.ts +13 -0
- package/dist/esm/models/psql/stateModel.js +53 -0
- package/dist/esm/models/psql/subjectHasFeeModel.d.ts +16 -0
- package/dist/esm/models/psql/subjectHasFeeModel.js +73 -0
- package/dist/esm/models/psql/subjectHasPayFeeHistoryModel.d.ts +18 -0
- package/dist/esm/models/psql/subjectHasPayFeeHistoryModel.js +104 -0
- package/dist/esm/models/psql/syllabusModel.d.ts +18 -0
- package/dist/esm/models/psql/syllabusModel.js +120 -0
- package/dist/esm/models/psql/testimonialModel.d.ts +21 -0
- package/dist/esm/models/psql/testimonialModel.js +155 -0
- package/dist/esm/models/psql/toDoModel.d.ts +20 -0
- package/dist/esm/models/psql/toDoModel.js +111 -0
- package/dist/esm/models/psql/tokenModel.d.ts +15 -0
- package/dist/esm/models/psql/tokenModel.js +35 -0
- package/dist/esm/models/psql/tripModel.d.ts +22 -0
- package/dist/esm/models/psql/tripModel.js +109 -0
- package/dist/esm/models/psql/typeManagementModel.d.ts +20 -0
- package/dist/esm/models/psql/typeManagementModel.js +117 -0
- package/dist/esm/models/psql/userBookAssessmentModel.d.ts +19 -0
- package/dist/esm/models/psql/userBookAssessmentModel.js +136 -0
- package/dist/esm/models/psql/userFeeTypeByAccountModel.d.ts +22 -0
- package/dist/esm/models/psql/userFeeTypeByAccountModel.js +179 -0
- package/dist/esm/models/psql/userFeeTypeModel.d.ts +25 -0
- package/dist/esm/models/psql/userFeeTypeModel.js +167 -0
- package/dist/esm/models/psql/userHasAnnouncementModel.d.ts +18 -0
- package/dist/esm/models/psql/userHasAnnouncementModel.js +103 -0
- package/dist/esm/models/psql/userHasBatchModel.d.ts +16 -0
- package/dist/esm/models/psql/userHasBatchModel.js +87 -0
- package/dist/esm/models/psql/userHasCourseModel.d.ts +22 -0
- package/dist/esm/models/psql/userHasCourseModel.js +111 -0
- package/dist/esm/models/psql/userHasDeviceModel.d.ts +19 -0
- package/dist/esm/models/psql/userHasDeviceModel.js +86 -0
- package/dist/esm/models/psql/userHasFeeTermsModel.d.ts +27 -0
- package/dist/esm/models/psql/userHasFeeTermsModel.js +197 -0
- package/dist/esm/models/psql/userHasFileModel.d.ts +16 -0
- package/dist/esm/models/psql/userHasFileModel.js +102 -0
- package/dist/esm/models/psql/userHasHomeWorkModel.d.ts +19 -0
- package/dist/esm/models/psql/userHasHomeWorkModel.js +114 -0
- package/dist/esm/models/psql/userHasInventoryHistoryModel.d.ts +29 -0
- package/dist/esm/models/psql/userHasInventoryHistoryModel.js +141 -0
- package/dist/esm/models/psql/userHasInventoryModel.d.ts +30 -0
- package/dist/esm/models/psql/userHasInventoryModel.js +143 -0
- package/dist/esm/models/psql/userHasLeaveHistoryModel.d.ts +25 -0
- package/dist/esm/models/psql/userHasLeaveHistoryModel.js +101 -0
- package/dist/esm/models/psql/userHasLeaveModel.d.ts +21 -0
- package/dist/esm/models/psql/userHasLeaveModel.js +116 -0
- package/dist/esm/models/psql/userHasOfferModel.d.ts +19 -0
- package/dist/esm/models/psql/userHasOfferModel.js +149 -0
- package/dist/esm/models/psql/userHasParentModel.d.ts +23 -0
- package/dist/esm/models/psql/userHasParentModel.js +130 -0
- package/dist/esm/models/psql/userHasRoleModel.d.ts +18 -0
- package/dist/esm/models/psql/userHasRoleModel.js +92 -0
- package/dist/esm/models/psql/userHasRollNumberModel.d.ts +17 -0
- package/dist/esm/models/psql/userHasRollNumberModel.js +85 -0
- package/dist/esm/models/psql/userHasStorageModel.d.ts +20 -0
- package/dist/esm/models/psql/userHasStorageModel.js +81 -0
- package/dist/esm/models/psql/userHasSubjectFeeModel.d.ts +18 -0
- package/dist/esm/models/psql/userHasSubjectFeeModel.js +81 -0
- package/dist/esm/models/psql/userLeaveRequestModel.d.ts +24 -0
- package/dist/esm/models/psql/userLeaveRequestModel.js +99 -0
- package/dist/esm/models/psql/userModel.d.ts +55 -0
- package/dist/esm/models/psql/userModel.js +385 -0
- package/dist/esm/models/psql/userPayoutDetailsModel.d.ts +21 -0
- package/dist/esm/models/psql/userPayoutDetailsModel.js +157 -0
- package/dist/esm/models/psql/userPayoutHistoryModel.d.ts +27 -0
- package/dist/esm/models/psql/userPayoutHistoryModel.js +150 -0
- package/dist/esm/models/psql/userPayoutModel.d.ts +20 -0
- package/dist/esm/models/psql/userPayoutModel.js +296 -0
- package/dist/esm/models/psql/userProjectAssessmentOptionModel.d.ts +19 -0
- package/dist/esm/models/psql/userProjectAssessmentOptionModel.js +121 -0
- package/dist/esm/models/psql/userRequiredStepsModel.d.ts +17 -0
- package/dist/esm/models/psql/userRequiredStepsModel.js +73 -0
- package/dist/esm/models/psql/vehicleModel.d.ts +20 -0
- package/dist/esm/models/psql/vehicleModel.js +105 -0
- package/dist/esm/models/psql/vendorManagementModel.d.ts +28 -0
- package/dist/esm/models/psql/vendorManagementModel.js +174 -0
- package/dist/esm/models/psql/walletHistoryModel.d.ts +24 -0
- package/dist/esm/models/psql/walletHistoryModel.js +97 -0
- package/dist/esm/models/psql/walletModel.d.ts +19 -0
- package/dist/esm/models/psql/walletModel.js +88 -0
- package/dist/esm/models/psql/workingDayModel.d.ts +20 -0
- package/dist/esm/models/psql/workingDayModel.js +74 -0
- package/dist/esm/models/psql/workingShiftModel.d.ts +21 -0
- package/dist/esm/models/psql/workingShiftModel.js +87 -0
- package/dist/esm/services/Concrete/mongooseCommonService.d.ts +36 -0
- package/dist/esm/services/Concrete/mongooseCommonService.js +102 -0
- package/dist/esm/services/Concrete/sequelizeCommonService.d.ts +17 -0
- package/dist/esm/services/Concrete/sequelizeCommonService.js +120 -0
- package/dist/esm/services/Contracts/IMongooseCommonService.d.ts +36 -0
- package/dist/esm/services/Contracts/IMongooseCommonService.js +1 -0
- package/dist/esm/services/Contracts/ISequelizeCommonService.d.ts +21 -0
- package/dist/esm/services/Contracts/ISequelizeCommonService.js +1 -0
- package/dist/esm/types/academicCalendarType.d.ts +6 -0
- package/dist/esm/types/academicCalendarType.js +1 -0
- package/dist/esm/types/accountHasReceiptDetailsType.d.ts +7 -0
- package/dist/esm/types/accountHasReceiptDetailsType.js +1 -0
- package/dist/esm/types/announcementType.d.ts +6 -0
- package/dist/esm/types/announcementType.js +1 -0
- package/dist/esm/types/approveRequestType.d.ts +2 -0
- package/dist/esm/types/approveRequestType.js +1 -0
- package/dist/esm/types/areaType.d.ts +3 -0
- package/dist/esm/types/areaType.js +1 -0
- package/dist/esm/types/attendanceType.d.ts +2 -0
- package/dist/esm/types/attendanceType.js +1 -0
- package/dist/esm/types/bankAccountDetailsType.d.ts +3 -0
- package/dist/esm/types/bankAccountDetailsType.js +1 -0
- package/dist/esm/types/bannerType.d.ts +7 -0
- package/dist/esm/types/bannerType.js +1 -0
- package/dist/esm/types/batchSubjectBookAssessmentType.d.ts +7 -0
- package/dist/esm/types/batchSubjectBookAssessmentType.js +1 -0
- package/dist/esm/types/batchSubjectProjectAssessmentType.d.ts +7 -0
- package/dist/esm/types/batchSubjectProjectAssessmentType.js +1 -0
- package/dist/esm/types/batchType.d.ts +7 -0
- package/dist/esm/types/batchType.js +1 -0
- package/dist/esm/types/blogType.d.ts +2 -0
- package/dist/esm/types/blogType.js +1 -0
- package/dist/esm/types/bookAssessmentDateType.d.ts +7 -0
- package/dist/esm/types/bookAssessmentDateType.js +1 -0
- package/dist/esm/types/careerType.d.ts +2 -0
- package/dist/esm/types/careerType.js +1 -0
- package/dist/esm/types/categoriesType.d.ts +3 -0
- package/dist/esm/types/categoriesType.js +1 -0
- package/dist/esm/types/certificatesHistoryType.d.ts +2 -0
- package/dist/esm/types/certificatesHistoryType.js +1 -0
- package/dist/esm/types/certificatesManagementType.d.ts +2 -0
- package/dist/esm/types/certificatesManagementType.js +1 -0
- package/dist/esm/types/classRoomType.d.ts +3 -0
- package/dist/esm/types/classRoomType.js +1 -0
- package/dist/esm/types/cloudStorageType.d.ts +3 -0
- package/dist/esm/types/cloudStorageType.js +1 -0
- package/dist/esm/types/coinPurchaseOfferType.d.ts +3 -0
- package/dist/esm/types/coinPurchaseOfferType.js +1 -0
- package/dist/esm/types/commonType.d.ts +9 -0
- package/dist/esm/types/commonType.js +1 -0
- package/dist/esm/types/contactFeedBackType.d.ts +3 -0
- package/dist/esm/types/contactFeedBackType.js +1 -0
- package/dist/esm/types/courseHasVisitorsType.d.ts +2 -0
- package/dist/esm/types/courseHasVisitorsType.js +1 -0
- package/dist/esm/types/courseType.d.ts +2 -0
- package/dist/esm/types/courseType.js +1 -0
- package/dist/esm/types/dailyBookType.d.ts +2 -0
- package/dist/esm/types/dailyBookType.js +1 -0
- package/dist/esm/types/dashboardManagementType.d.ts +2 -0
- package/dist/esm/types/dashboardManagementType.js +1 -0
- package/dist/esm/types/driverType.d.ts +6 -0
- package/dist/esm/types/driverType.js +1 -0
- package/dist/esm/types/entityGroupType.d.ts +3 -0
- package/dist/esm/types/entityGroupType.js +1 -0
- package/dist/esm/types/eventType.d.ts +2 -0
- package/dist/esm/types/eventType.js +1 -0
- package/dist/esm/types/examGroupType.d.ts +6 -0
- package/dist/esm/types/examGroupType.js +1 -0
- package/dist/esm/types/examHasAnswerSheetType.d.ts +2 -0
- package/dist/esm/types/examHasAnswerSheetType.js +1 -0
- package/dist/esm/types/examType.d.ts +6 -0
- package/dist/esm/types/examType.js +1 -0
- package/dist/esm/types/facilityType.d.ts +3 -0
- package/dist/esm/types/facilityType.js +1 -0
- package/dist/esm/types/featureActionType.d.ts +3 -0
- package/dist/esm/types/featureActionType.js +1 -0
- package/dist/esm/types/feeHistoryDetailsType.d.ts +6 -0
- package/dist/esm/types/feeHistoryDetailsType.js +1 -0
- package/dist/esm/types/feeHistoryType.d.ts +18 -0
- package/dist/esm/types/feeHistoryType.js +1 -0
- package/dist/esm/types/feeReminderSettingType.d.ts +3 -0
- package/dist/esm/types/feeReminderSettingType.js +1 -0
- package/dist/esm/types/feeReminderType.d.ts +3 -0
- package/dist/esm/types/feeReminderType.js +1 -0
- package/dist/esm/types/feeReminderTypeType.d.ts +2 -0
- package/dist/esm/types/feeReminderTypeType.js +1 -0
- package/dist/esm/types/feeTypeHasTermsType.d.ts +3 -0
- package/dist/esm/types/feeTypeHasTermsType.js +1 -0
- package/dist/esm/types/feeTypeType.d.ts +3 -0
- package/dist/esm/types/feeTypeType.js +1 -0
- package/dist/esm/types/feedBackType.d.ts +2 -0
- package/dist/esm/types/feedBackType.js +1 -0
- package/dist/esm/types/feesCollectionType.d.ts +3 -0
- package/dist/esm/types/feesCollectionType.js +1 -0
- package/dist/esm/types/fileStorageType.d.ts +3 -0
- package/dist/esm/types/fileStorageType.js +1 -0
- package/dist/esm/types/floormanagementType.d.ts +3 -0
- package/dist/esm/types/floormanagementType.js +1 -0
- package/dist/esm/types/generateIdCardType.d.ts +2 -0
- package/dist/esm/types/generateIdCardType.js +1 -0
- package/dist/esm/types/greetingsType.d.ts +6 -0
- package/dist/esm/types/greetingsType.js +1 -0
- package/dist/esm/types/holidayType.d.ts +2 -0
- package/dist/esm/types/holidayType.js +2 -0
- package/dist/esm/types/homeWorkType.d.ts +3 -0
- package/dist/esm/types/homeWorkType.js +1 -0
- package/dist/esm/types/informationSupportType.d.ts +2 -0
- package/dist/esm/types/informationSupportType.js +1 -0
- package/dist/esm/types/inquiryType.d.ts +2 -0
- package/dist/esm/types/inquiryType.js +1 -0
- package/dist/esm/types/instituteEntityType.d.ts +6 -0
- package/dist/esm/types/instituteEntityType.js +1 -0
- package/dist/esm/types/instituteEntityTypeType.d.ts +3 -0
- package/dist/esm/types/instituteEntityTypeType.js +1 -0
- package/dist/esm/types/instituteSubscriptionPlanType.d.ts +3 -0
- package/dist/esm/types/instituteSubscriptionPlanType.js +1 -0
- package/dist/esm/types/instituteType.d.ts +3 -0
- package/dist/esm/types/instituteType.js +1 -0
- package/dist/esm/types/inventoryHistoryType.d.ts +3 -0
- package/dist/esm/types/inventoryHistoryType.js +1 -0
- package/dist/esm/types/inventoryType.d.ts +3 -0
- package/dist/esm/types/inventoryType.js +1 -0
- package/dist/esm/types/jobApply.d.ts +2 -0
- package/dist/esm/types/jobApply.js +1 -0
- package/dist/esm/types/lectureHistoryType.d.ts +6 -0
- package/dist/esm/types/lectureHistoryType.js +1 -0
- package/dist/esm/types/lectureType.d.ts +6 -0
- package/dist/esm/types/lectureType.js +1 -0
- package/dist/esm/types/masterLeaveType.d.ts +3 -0
- package/dist/esm/types/masterLeaveType.js +1 -0
- package/dist/esm/types/moduleFeatureType.d.ts +3 -0
- package/dist/esm/types/moduleFeatureType.js +1 -0
- package/dist/esm/types/moduleType.d.ts +3 -0
- package/dist/esm/types/moduleType.js +1 -0
- package/dist/esm/types/offerType.d.ts +3 -0
- package/dist/esm/types/offerType.js +1 -0
- package/dist/esm/types/paymentTermsType.d.ts +3 -0
- package/dist/esm/types/paymentTermsType.js +2 -0
- package/dist/esm/types/pdcChequeType.d.ts +6 -0
- package/dist/esm/types/pdcChequeType.js +1 -0
- package/dist/esm/types/pdcHistoryType.d.ts +2 -0
- package/dist/esm/types/pdcHistoryType.js +1 -0
- package/dist/esm/types/photosGalleryType.d.ts +2 -0
- package/dist/esm/types/photosGalleryType.js +1 -0
- package/dist/esm/types/plannerType.d.ts +7 -0
- package/dist/esm/types/plannerType.js +1 -0
- package/dist/esm/types/productType.d.ts +3 -0
- package/dist/esm/types/productType.js +1 -0
- package/dist/esm/types/projectAssessmentOptionType.d.ts +7 -0
- package/dist/esm/types/projectAssessmentOptionType.js +1 -0
- package/dist/esm/types/roleType.d.ts +11 -0
- package/dist/esm/types/roleType.js +1 -0
- package/dist/esm/types/rulesRegulationType.d.ts +3 -0
- package/dist/esm/types/rulesRegulationType.js +1 -0
- package/dist/esm/types/schoolFeeCollectionType.d.ts +3 -0
- package/dist/esm/types/schoolFeeCollectionType.js +1 -0
- package/dist/esm/types/schoolFeeType.d.ts +3 -0
- package/dist/esm/types/schoolFeeType.js +1 -0
- package/dist/esm/types/schoolOfferType.d.ts +3 -0
- package/dist/esm/types/schoolOfferType.js +1 -0
- package/dist/esm/types/sendNotificationType.d.ts +3 -0
- package/dist/esm/types/sendNotificationType.js +1 -0
- package/dist/esm/types/slotType.d.ts +2 -0
- package/dist/esm/types/slotType.js +1 -0
- package/dist/esm/types/subCategoryType.d.ts +3 -0
- package/dist/esm/types/subCategoryType.js +1 -0
- package/dist/esm/types/subjectHasFeeType.d.ts +3 -0
- package/dist/esm/types/subjectHasFeeType.js +1 -0
- package/dist/esm/types/subjectHasPayFeeHistoryType.d.ts +3 -0
- package/dist/esm/types/subjectHasPayFeeHistoryType.js +1 -0
- package/dist/esm/types/subjectIndexType.d.ts +7 -0
- package/dist/esm/types/subjectIndexType.js +1 -0
- package/dist/esm/types/subscriptionPlanType.d.ts +2 -0
- package/dist/esm/types/subscriptionPlanType.js +1 -0
- package/dist/esm/types/syllabusType.d.ts +7 -0
- package/dist/esm/types/syllabusType.js +1 -0
- package/dist/esm/types/taskManagementType.d.ts +2 -0
- package/dist/esm/types/taskManagementType.js +1 -0
- package/dist/esm/types/testimonialType.d.ts +13 -0
- package/dist/esm/types/testimonialType.js +1 -0
- package/dist/esm/types/toDoType.d.ts +6 -0
- package/dist/esm/types/toDoType.js +1 -0
- package/dist/esm/types/tripType.d.ts +2 -0
- package/dist/esm/types/tripType.js +1 -0
- package/dist/esm/types/typeManagementType.d.ts +3 -0
- package/dist/esm/types/typeManagementType.js +1 -0
- package/dist/esm/types/uniqueNumberCounterType.d.ts +2 -0
- package/dist/esm/types/uniqueNumberCounterType.js +1 -0
- package/dist/esm/types/userBookAssessmentType.d.ts +7 -0
- package/dist/esm/types/userBookAssessmentType.js +1 -0
- package/dist/esm/types/userDetailsType.d.ts +2 -0
- package/dist/esm/types/userDetailsType.js +1 -0
- package/dist/esm/types/userFeeTypeByAccountType.d.ts +3 -0
- package/dist/esm/types/userFeeTypeByAccountType.js +1 -0
- package/dist/esm/types/userFeeTypeType.d.ts +6 -0
- package/dist/esm/types/userFeeTypeType.js +1 -0
- package/dist/esm/types/userHasAnnouncementType.d.ts +3 -0
- package/dist/esm/types/userHasAnnouncementType.js +1 -0
- package/dist/esm/types/userHasBatchType.d.ts +9 -0
- package/dist/esm/types/userHasBatchType.js +1 -0
- package/dist/esm/types/userHasCourseType.d.ts +3 -0
- package/dist/esm/types/userHasCourseType.js +1 -0
- package/dist/esm/types/userHasDeviceType.d.ts +3 -0
- package/dist/esm/types/userHasDeviceType.js +1 -0
- package/dist/esm/types/userHasFeeTermsType.d.ts +3 -0
- package/dist/esm/types/userHasFeeTermsType.js +1 -0
- package/dist/esm/types/userHasFileType.d.ts +3 -0
- package/dist/esm/types/userHasFileType.js +1 -0
- package/dist/esm/types/userHasHomeWorkType.d.ts +3 -0
- package/dist/esm/types/userHasHomeWorkType.js +1 -0
- package/dist/esm/types/userHasInventoryHistoryType.d.ts +3 -0
- package/dist/esm/types/userHasInventoryHistoryType.js +1 -0
- package/dist/esm/types/userHasInventoryType.d.ts +3 -0
- package/dist/esm/types/userHasInventoryType.js +1 -0
- package/dist/esm/types/userHasLeaveHistoryType.d.ts +3 -0
- package/dist/esm/types/userHasLeaveHistoryType.js +1 -0
- package/dist/esm/types/userHasLeaveType.d.ts +3 -0
- package/dist/esm/types/userHasLeaveType.js +1 -0
- package/dist/esm/types/userHasOffer.d.ts +3 -0
- package/dist/esm/types/userHasOffer.js +1 -0
- package/dist/esm/types/userHasParentType.d.ts +10 -0
- package/dist/esm/types/userHasParentType.js +1 -0
- package/dist/esm/types/userHasRoleType.d.ts +3 -0
- package/dist/esm/types/userHasRoleType.js +1 -0
- package/dist/esm/types/userHasRollNumberType.d.ts +3 -0
- package/dist/esm/types/userHasRollNumberType.js +1 -0
- package/dist/esm/types/userHasStorageType.d.ts +3 -0
- package/dist/esm/types/userHasStorageType.js +1 -0
- package/dist/esm/types/userHasSubjectFeeType.d.ts +3 -0
- package/dist/esm/types/userHasSubjectFeeType.js +1 -0
- package/dist/esm/types/userInstituteMetaType.d.ts +2 -0
- package/dist/esm/types/userInstituteMetaType.js +1 -0
- package/dist/esm/types/userLeaveRequestType.d.ts +3 -0
- package/dist/esm/types/userLeaveRequestType.js +1 -0
- package/dist/esm/types/userMetaType.d.ts +13 -0
- package/dist/esm/types/userMetaType.js +1 -0
- package/dist/esm/types/userPayoutDetailsType.d.ts +3 -0
- package/dist/esm/types/userPayoutDetailsType.js +1 -0
- package/dist/esm/types/userPayoutHistoryType.d.ts +3 -0
- package/dist/esm/types/userPayoutHistoryType.js +1 -0
- package/dist/esm/types/userPayoutType.d.ts +7 -0
- package/dist/esm/types/userPayoutType.js +1 -0
- package/dist/esm/types/userProjectAssessmentOptionType.d.ts +7 -0
- package/dist/esm/types/userProjectAssessmentOptionType.js +1 -0
- package/dist/esm/types/userRequiredStepsType.d.ts +3 -0
- package/dist/esm/types/userRequiredStepsType.js +1 -0
- package/dist/esm/types/userSchoolMetaType.d.ts +3 -0
- package/dist/esm/types/userSchoolMetaType.js +1 -0
- package/dist/esm/types/userType.d.ts +12 -0
- package/dist/esm/types/userType.js +1 -0
- package/dist/esm/types/vehicleType.d.ts +3 -0
- package/dist/esm/types/vehicleType.js +1 -0
- package/dist/esm/types/vendorType.d.ts +3 -0
- package/dist/esm/types/vendorType.js +1 -0
- package/dist/esm/types/videoAnalystType.d.ts +2 -0
- package/dist/esm/types/videoAnalystType.js +1 -0
- package/dist/esm/types/walletHistoryType.d.ts +3 -0
- package/dist/esm/types/walletHistoryType.js +1 -0
- package/dist/esm/types/walletTransactionType.d.ts +3 -0
- package/dist/esm/types/walletTransactionType.js +1 -0
- package/dist/esm/types/walletType.d.ts +3 -0
- package/dist/esm/types/walletType.js +1 -0
- package/dist/esm/types/workingDayType.d.ts +3 -0
- package/dist/esm/types/workingDayType.js +1 -0
- package/dist/esm/types/workingShiftType.d.ts +3 -0
- package/dist/esm/types/workingShiftType.js +1 -0
- package/package.json +13 -7
- package/dist/.sequelizerc +0 -13
- package/dist/configs/postgresConfig.d.ts +0 -8
- package/dist/configs/postgresConfig.js +0 -32
- package/dist/constants/app.js +0 -1105
- package/dist/db/psql/index.d.ts +0 -16
- package/dist/db/psql/index.js +0 -105
- package/dist/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.d.ts +0 -2
- package/dist/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.js +0 -71
- package/dist/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.d.ts +0 -3
- package/dist/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.js +0 -33
- package/dist/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.d.ts +0 -3
- package/dist/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.js +0 -94
- package/dist/db/psql/migrations/20250108092439-update-batch-model-fields.d.ts +0 -2
- package/dist/db/psql/migrations/20250108092439-update-batch-model-fields.js +0 -38
- package/dist/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.d.ts +0 -3
- package/dist/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.js +0 -102
- package/dist/db/psql/migrations/20250211071743-add-action-user-has-histroy.d.ts +0 -3
- package/dist/db/psql/migrations/20250211071743-add-action-user-has-histroy.js +0 -76
- package/dist/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.d.ts +0 -3
- package/dist/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.js +0 -80
- package/dist/db/psql/migrations/20250214072626-add-middlename-user.d.ts +0 -3
- package/dist/db/psql/migrations/20250214072626-add-middlename-user.js +0 -80
- package/dist/db/psql/migrations/20250224085333-add-apptype-in-user.d.ts +0 -3
- package/dist/db/psql/migrations/20250224085333-add-apptype-in-user.js +0 -78
- package/dist/db/psql/migrations/20250226053006-add-brouchure-in-institute.d.ts +0 -3
- package/dist/db/psql/migrations/20250226053006-add-brouchure-in-institute.js +0 -80
- package/dist/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.d.ts +0 -3
- package/dist/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.js +0 -78
- package/dist/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.js +0 -112
- package/dist/db/psql/migrations/20250306053557-add-shifyId-in-batch.d.ts +0 -3
- package/dist/db/psql/migrations/20250306053557-add-shifyId-in-batch.js +0 -86
- package/dist/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.d.ts +0 -2
- package/dist/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.js +0 -43
- package/dist/db/psql/migrations/20250402090653-add-user-area.d.ts +0 -3
- package/dist/db/psql/migrations/20250402090653-add-user-area.js +0 -94
- package/dist/db/psql/migrations/20250407094125-update-type-in-typeManagement.d.ts +0 -2
- package/dist/db/psql/migrations/20250407094125-update-type-in-typeManagement.js +0 -64
- package/dist/db/psql/migrations/20250409105229-add-user-type-in-role.d.ts +0 -3
- package/dist/db/psql/migrations/20250409105229-add-user-type-in-role.js +0 -55
- package/dist/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.d.ts +0 -2
- package/dist/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.js +0 -16
- package/dist/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.js +0 -134
- package/dist/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.js +0 -86
- package/dist/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.d.ts +0 -3
- package/dist/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.js +0 -81
- package/dist/db/psql/migrations/20250422114032-add-account.d.ts +0 -3
- package/dist/db/psql/migrations/20250422114032-add-account.js +0 -86
- package/dist/db/psql/migrations/20250423051841-add-master-leave-clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250423051841-add-master-leave-clm.js +0 -71
- package/dist/db/psql/migrations/20250423064522-update-calender-enum.d.ts +0 -2
- package/dist/db/psql/migrations/20250423064522-update-calender-enum.js +0 -34
- package/dist/db/psql/migrations/20250423093827-update-institued-district.d.ts +0 -3
- package/dist/db/psql/migrations/20250423093827-update-institued-district.js +0 -78
- package/dist/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.js +0 -34
- package/dist/db/psql/migrations/20250424053841-update-fee-history-key.d.ts +0 -2
- package/dist/db/psql/migrations/20250424053841-update-fee-history-key.js +0 -35
- package/dist/db/psql/migrations/20250426070309-update-banner-clm-userType.d.ts +0 -3
- package/dist/db/psql/migrations/20250426070309-update-banner-clm-userType.js +0 -55
- package/dist/db/psql/migrations/20250505035157-update-fee-collection-clm-add.d.ts +0 -3
- package/dist/db/psql/migrations/20250505035157-update-fee-collection-clm-add.js +0 -86
- package/dist/db/psql/migrations/20250505082924-update-banner-clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250505082924-update-banner-clm.js +0 -18
- package/dist/db/psql/migrations/20250505094616-about-as-clm-in-institued.d.ts +0 -2
- package/dist/db/psql/migrations/20250505094616-about-as-clm-in-institued.js +0 -16
- package/dist/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.d.ts +0 -3
- package/dist/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.js +0 -80
- package/dist/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.js +0 -80
- package/dist/db/psql/migrations/20250513061037-add-techer-clm-batch.d.ts +0 -3
- package/dist/db/psql/migrations/20250513061037-add-techer-clm-batch.js +0 -88
- package/dist/db/psql/migrations/20250514101801-add-slotId-workingShif.d.ts +0 -3
- package/dist/db/psql/migrations/20250514101801-add-slotId-workingShif.js +0 -86
- package/dist/db/psql/migrations/20250516062917-add-globalId-clm-user-model.d.ts +0 -3
- package/dist/db/psql/migrations/20250516062917-add-globalId-clm-user-model.js +0 -80
- package/dist/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.d.ts +0 -3
- package/dist/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.js +0 -80
- package/dist/db/psql/migrations/20250520061231-add-institued_mobile_person_data.d.ts +0 -3
- package/dist/db/psql/migrations/20250520061231-add-institued_mobile_person_data.js +0 -116
- package/dist/db/psql/migrations/20250522044729-add-institued_update_add_2.d.ts +0 -2
- package/dist/db/psql/migrations/20250522044729-add-institued_update_add_2.js +0 -16
- package/dist/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.d.ts +0 -3
- package/dist/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.js +0 -98
- package/dist/db/psql/migrations/20250526093322-add-appType_clm_in_module.d.ts +0 -3
- package/dist/db/psql/migrations/20250526093322-add-appType_clm_in_module.js +0 -80
- package/dist/db/psql/migrations/20250526094030-add-appType_clm_in_action.d.ts +0 -3
- package/dist/db/psql/migrations/20250526094030-add-appType_clm_in_action.js +0 -80
- package/dist/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.d.ts +0 -3
- package/dist/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.js +0 -80
- package/dist/db/psql/migrations/20250527065001-add-app-type-in-role-model.d.ts +0 -3
- package/dist/db/psql/migrations/20250527065001-add-app-type-in-role-model.js +0 -57
- package/dist/db/psql/migrations/20250528045906-add-module-type-to-notifications.d.ts +0 -2
- package/dist/db/psql/migrations/20250528045906-add-module-type-to-notifications.js +0 -13
- package/dist/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.d.ts +0 -3
- package/dist/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.js +0 -107
- package/dist/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.d.ts +0 -3
- package/dist/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.js +0 -113
- package/dist/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.d.ts +0 -3
- package/dist/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.js +0 -80
- package/dist/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.d.ts +0 -3
- package/dist/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.js +0 -57
- package/dist/db/psql/migrations/20250604121051-update-mobile-number-opstion.d.ts +0 -3
- package/dist/db/psql/migrations/20250604121051-update-mobile-number-opstion.js +0 -15
- package/dist/db/psql/migrations/20250617064159-update-type-management-jun-17.d.ts +0 -2
- package/dist/db/psql/migrations/20250617064159-update-type-management-jun-17.js +0 -11
- package/dist/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.d.ts +0 -2
- package/dist/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.js +0 -12
- package/dist/db/psql/migrations/20250701095321-add-clm-institute-pdfId.d.ts +0 -3
- package/dist/db/psql/migrations/20250701095321-add-clm-institute-pdfId.js +0 -57
- package/dist/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.d.ts +0 -2
- package/dist/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.js +0 -12
- package/dist/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.d.ts +0 -2
- package/dist/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.js +0 -13
- package/dist/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.d.ts +0 -2
- package/dist/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.js +0 -12
- package/dist/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.d.ts +0 -2
- package/dist/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.js +0 -9
- package/dist/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.d.ts +0 -3
- package/dist/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.js +0 -86
- package/dist/db/psql/migrations/20250718121251-add-clm-classroom-typeid.d.ts +0 -3
- package/dist/db/psql/migrations/20250718121251-add-clm-classroom-typeid.js +0 -86
- package/dist/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.d.ts +0 -2
- package/dist/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.js +0 -22
- package/dist/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.d.ts +0 -2
- package/dist/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.js +0 -17
- package/dist/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.d.ts +0 -3
- package/dist/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.js +0 -78
- package/dist/db/psql/migrations/20250722071836-add-title-to-floor-management.d.ts +0 -2
- package/dist/db/psql/migrations/20250722071836-add-title-to-floor-management.js +0 -14
- package/dist/db/psql/migrations/20250723150111-add-clm-batch-slotId.d.ts +0 -3
- package/dist/db/psql/migrations/20250723150111-add-clm-batch-slotId.js +0 -86
- package/dist/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.d.ts +0 -2
- package/dist/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.js +0 -15
- package/dist/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.d.ts +0 -2
- package/dist/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.js +0 -24
- package/dist/db/psql/migrations/20250730104844-update-unique-key-assessment-type.d.ts +0 -2
- package/dist/db/psql/migrations/20250730104844-update-unique-key-assessment-type.js +0 -30
- package/dist/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.d.ts +0 -3
- package/dist/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.js +0 -62
- package/dist/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.d.ts +0 -2
- package/dist/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.js +0 -21
- package/dist/db/psql/migrations/20250805115805-add-descriptions-to-lectures.d.ts +0 -2
- package/dist/db/psql/migrations/20250805115805-add-descriptions-to-lectures.js +0 -12
- package/dist/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.d.ts +0 -3
- package/dist/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.js +0 -86
- package/dist/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.d.ts +0 -2
- package/dist/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.js +0 -12
- package/dist/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.d.ts +0 -2
- package/dist/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.js +0 -17
- package/dist/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.d.ts +0 -2
- package/dist/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.js +0 -15
- package/dist/db/psql/migrations/20250829103203-remove-syllabus-composit-index.d.ts +0 -2
- package/dist/db/psql/migrations/20250829103203-remove-syllabus-composit-index.js +0 -15
- package/dist/db/psql/migrations/20250905132024-add-uuid-to-users.d.ts +0 -2
- package/dist/db/psql/migrations/20250905132024-add-uuid-to-users.js +0 -12
- package/dist/db/psql/migrations/20250908054025-userHasOffer_model_update.d.ts +0 -3
- package/dist/db/psql/migrations/20250908054025-userHasOffer_model_update.js +0 -112
- package/dist/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.d.ts +0 -3
- package/dist/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.js +0 -70
- package/dist/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.d.ts +0 -2
- package/dist/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.js +0 -17
- package/dist/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.d.ts +0 -2
- package/dist/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.js +0 -39
- package/dist/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.d.ts +0 -2
- package/dist/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.js +0 -17
- package/dist/db/psql/migrations/20250917135646-change-storageInBytes-to-float.d.ts +0 -2
- package/dist/db/psql/migrations/20250917135646-change-storageInBytes-to-float.js +0 -17
- package/dist/db/psql/seeders/20240809100759-add-countries-states-cities.d.ts +0 -2
- package/dist/db/psql/seeders/20240809100759-add-countries-states-cities.js +0 -64
- package/dist/db/psql/seeders/20250101122757-add-default-permissions-modules.d.ts +0 -2
- package/dist/db/psql/seeders/20250101122757-add-default-permissions-modules.js +0 -159
- package/dist/db/psql/seeders/Data/AcademicCalendarModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/AcademicCalendarModule.js +0 -24
- package/dist/db/psql/seeders/Data/AdministrativeStaffModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/AdministrativeStaffModule.js +0 -38
- package/dist/db/psql/seeders/Data/AnnouncementsModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/AnnouncementsModule.js +0 -50
- package/dist/db/psql/seeders/Data/AssetsModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/AssetsModule.js +0 -37
- package/dist/db/psql/seeders/Data/AttendanceModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/AttendanceModule.js +0 -57
- package/dist/db/psql/seeders/Data/BannerModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/BannerModule.js +0 -24
- package/dist/db/psql/seeders/Data/BatchModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/BatchModule.js +0 -34
- package/dist/db/psql/seeders/Data/BoardModule .d.ts +0 -10
- package/dist/db/psql/seeders/Data/BoardModule .js +0 -18
- package/dist/db/psql/seeders/Data/BookAssessmentsModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/BookAssessmentsModule.js +0 -23
- package/dist/db/psql/seeders/Data/CategoriesModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/CategoriesModule.js +0 -18
- package/dist/db/psql/seeders/Data/ClassroomModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/ClassroomModule.js +0 -37
- package/dist/db/psql/seeders/Data/DivisionModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/DivisionModule.js +0 -25
- package/dist/db/psql/seeders/Data/EventModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/EventModule.js +0 -22
- package/dist/db/psql/seeders/Data/ExamsAndResultsModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/ExamsAndResultsModule.js +0 -113
- package/dist/db/psql/seeders/Data/FacilityModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/FacilityModule.js +0 -22
- package/dist/db/psql/seeders/Data/FeeAndDiscountModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/FeeAndDiscountModule.js +0 -239
- package/dist/db/psql/seeders/Data/FeedBackModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/FeedBackModule.js +0 -27
- package/dist/db/psql/seeders/Data/FileModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/FileModule.js +0 -38
- package/dist/db/psql/seeders/Data/GenerateIdModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/GenerateIdModule.js +0 -19
- package/dist/db/psql/seeders/Data/HolidayModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/HolidayModule.js +0 -22
- package/dist/db/psql/seeders/Data/HomeworkModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/HomeworkModule.js +0 -42
- package/dist/db/psql/seeders/Data/IndexModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/IndexModule.js +0 -97
- package/dist/db/psql/seeders/Data/InquiryModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/InquiryModule.js +0 -22
- package/dist/db/psql/seeders/Data/InstituteModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/InstituteModule.js +0 -63
- package/dist/db/psql/seeders/Data/InventoryModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/InventoryModule.js +0 -42
- package/dist/db/psql/seeders/Data/JobApplyModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/JobApplyModule.js +0 -22
- package/dist/db/psql/seeders/Data/LectureModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/LectureModule.js +0 -28
- package/dist/db/psql/seeders/Data/ParentModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/ParentModule.js +0 -38
- package/dist/db/psql/seeders/Data/PayoutModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/PayoutModule.js +0 -18
- package/dist/db/psql/seeders/Data/PdcChequesModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/PdcChequesModule.js +0 -27
- package/dist/db/psql/seeders/Data/PhotosGalleryModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/PhotosGalleryModule.js +0 -27
- package/dist/db/psql/seeders/Data/PlannerModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/PlannerModule.js +0 -18
- package/dist/db/psql/seeders/Data/ProjectAssessmentsModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/ProjectAssessmentsModule.js +0 -23
- package/dist/db/psql/seeders/Data/ReplaceTeacherModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/ReplaceTeacherModule.js +0 -22
- package/dist/db/psql/seeders/Data/RoleModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/RoleModule.js +0 -53
- package/dist/db/psql/seeders/Data/RollNumberModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/RollNumberModule.js +0 -22
- package/dist/db/psql/seeders/Data/SchoolFeeModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/SchoolFeeModule.js +0 -38
- package/dist/db/psql/seeders/Data/SchoolModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/SchoolModule.js +0 -63
- package/dist/db/psql/seeders/Data/SchoolRegistration.d.ts +0 -13
- package/dist/db/psql/seeders/Data/SchoolRegistration.js +0 -22
- package/dist/db/psql/seeders/Data/SettingsModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/SettingsModule.js +0 -28
- package/dist/db/psql/seeders/Data/StaffTimingModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/StaffTimingModule.js +0 -22
- package/dist/db/psql/seeders/Data/StudentModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/StudentModule.js +0 -18
- package/dist/db/psql/seeders/Data/SubjectModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/SubjectModule.js +0 -37
- package/dist/db/psql/seeders/Data/SyllabusManagementModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/SyllabusManagementModule.js +0 -25
- package/dist/db/psql/seeders/Data/TeacherModule.d.ts +0 -10
- package/dist/db/psql/seeders/Data/TeacherModule.js +0 -68
- package/dist/db/psql/seeders/Data/TestimonialsModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/TestimonialsModule.js +0 -27
- package/dist/db/psql/seeders/Data/TimetableModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/TimetableModule.js +0 -43
- package/dist/db/psql/seeders/Data/To-doModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/To-doModule.js +0 -27
- package/dist/db/psql/seeders/Data/TypeManagementModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/TypeManagementModule.js +0 -28
- package/dist/db/psql/seeders/Data/UserModule.d.ts +0 -13
- package/dist/db/psql/seeders/Data/UserModule.js +0 -266
- package/dist/db/psql/seeders/Data/appType.d.ts +0 -4
- package/dist/db/psql/seeders/Data/appType.js +0 -8
- package/dist/helpers/utils.d.ts +0 -173
- package/dist/helpers/utils.js +0 -682
- package/dist/index.d.ts +0 -419
- package/dist/index.js +0 -758
- package/dist/interfaces/approvalRequestInterface.d.ts +0 -14
- package/dist/interfaces/userInstituteMetaInterface.d.ts +0 -39
- package/dist/models/mongodb/taskManagementModel.js +0 -166
- package/dist/models/psql/userModel.js +0 -392
- package/dist/services/Concrete/mongooseCommonService.js +0 -107
- package/dist/services/Concrete/sequelizeCommonService.js +0 -124
- /package/dist/{configs → cjs/configs}/aws.d.ts +0 -0
- /package/dist/{configs → cjs/configs}/aws.js +0 -0
- /package/dist/{configs → cjs/configs}/env.d.ts +0 -0
- /package/dist/{configs → cjs/configs}/env.js +0 -0
- /package/dist/{constants → cjs/constants}/app.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/defaultModelAttributes.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/defaultModelAttributes.js +0 -0
- /package/dist/{constants → cjs/constants}/errorMessages.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/errorMessages.js +0 -0
- /package/dist/{constants → cjs/constants}/httpStatusCode.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/httpStatusCode.js +0 -0
- /package/dist/{constants → cjs/constants}/successMessages.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/successMessages.js +0 -0
- /package/dist/{helpers → cjs/helpers}/s3Uploader.d.ts +0 -0
- /package/dist/{helpers → cjs/helpers}/s3Uploader.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/academicCalendarInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/academicCalendarInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/accountHasReceiptDetailsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/accountHasReceiptDetailsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/announcementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/announcementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/approvalRequestInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/areaInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/areaInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/attendanceInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/attendanceInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bankAccountDetailsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bankAccountDetailsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bannerInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bannerInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchSubjectBookAssessmentInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchSubjectBookAssessmentInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchSubjectProjectAssessmentInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/batchSubjectProjectAssessmentInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/blogInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/blogInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bookAssessmentDateInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/bookAssessmentDateInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/careerInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/careerInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/categoriesInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/categoriesInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/certificatesHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/certificatesHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/certificatesManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/certificatesManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/cityInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/cityInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/classRoomInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/classRoomInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/cloudStorageInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/cloudStorageInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/coinPurchaseOfferInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/coinPurchaseOfferInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/columnInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/columnInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/commanInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/commanInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/contactFeedBackInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/contactFeedBackInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/countryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/countryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/courseHasVisitorsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/courseHasVisitorsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/courseInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/courseInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/dailyBookInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/dailyBookInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/dashboardManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/dashboardManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/driverInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/driverInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/entityGroupInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/entityGroupInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/eventInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/eventInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examGroupInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examGroupInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examHasAnswerSheetInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examHasAnswerSheetInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/examInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/facilityInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/facilityInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/featureActionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/featureActionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeHistoryDetailsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeHistoryDetailsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderSettingInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderSettingInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderTypeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeReminderTypeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeTypeHasTermsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeTypeHasTermsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeTypeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feeTypeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feedBackInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feedBackInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feesCollectionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/feesCollectionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/fileStorageInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/fileStorageInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/floorManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/floorManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/generateIdCardInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/generateIdCardInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/greetingsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/greetingsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/holidayInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/holidayInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/homeworkInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/homeworkInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/informationSupportInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/informationSupportInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inquiryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inquiryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteEntityInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteEntityInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteEntityTypeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteEntityTypeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteSubscriptionPlanInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/instituteSubscriptionPlanInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inventoryHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inventoryHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inventoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/inventoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/invoiceInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/invoiceInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/jobApplyInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/jobApplyInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/lectureHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/lectureHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/lectureInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/lectureInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/masterLeaveInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/masterLeaveInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/moduleFeatureInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/moduleFeatureInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/moduleInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/moduleInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/offersInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/offersInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/paymentTermsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/paymentTermsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pdcChequeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pdcChequeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pdcHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pdcHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/photosGalleryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/photosGalleryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pincodeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/pincodeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/plannerInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/plannerInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/productInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/productInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/projectAssessmentOptionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/projectAssessmentOptionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/replaceTeacherInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/replaceTeacherInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/roleInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/roleInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/rulesRegulationInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/rulesRegulationInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolFeeCollectionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolFeeCollectionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolFeeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolFeeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolOfferInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/schoolOfferInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/sendNotificationInerface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/sendNotificationInerface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/slotInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/slotInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/stateInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/stateInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subCategoriesInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subCategoriesInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectHasFeeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectHasFeeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectHasPayFeeHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectHasPayFeeHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectIndexInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subjectIndexInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subscriptionPlanInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/subscriptionPlanInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/syllabusInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/syllabusInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/taskManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/taskManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/testimonialInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/testimonialInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/toDoInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/toDoInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/tokenInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/tokenInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/tripInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/tripInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/typeManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/typeManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/uniqueNumberCounterInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/uniqueNumberCounterInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userBookAssessmentInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userBookAssessmentInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userDetailsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userDetailsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userFeeTypeByAccountInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userFeeTypeByAccountInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userFeeTypeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userFeeTypeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasAnnouncementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasAnnouncementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasBatchInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasBatchInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasCourseInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasCourseInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasDeviceInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasDeviceInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasFeeTermsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasFeeTermsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasFileInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasFileInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasHomeWorkInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasHomeWorkInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasInventoryHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasInventoryHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasInventoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasInventoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasLeaveHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasLeaveHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasLeaveInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasLeaveInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasOfferInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasOfferInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasParentInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasParentInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasRoleInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasRoleInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasRollNumberInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasRollNumberInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasStorageInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasStorageInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasSubjectFeeInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userHasSubjectFeeInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userInstituteMetaInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userLeaveRequestInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userLeaveRequestInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userMetaInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userMetaInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutDetailsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutDetailsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userPayoutInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userProjectAssessmentOptionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userProjectAssessmentOptionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userRequiredStepsInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userRequiredStepsInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userSchoolMetaInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/userSchoolMetaInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/vehicleInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/vehicleInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/vendorManagementInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/vendorManagementInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/videoAnalystInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/videoAnalystInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletHistoryInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletHistoryInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletTransactionInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/walletTransactionInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/workingDayInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/workingDayInterface.js +0 -0
- /package/dist/{interfaces → cjs/interfaces}/workingShiftInterface.d.ts +0 -0
- /package/dist/{interfaces → cjs/interfaces}/workingShiftInterface.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/approvalRequestModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/approvalRequestModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/attendanceModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/attendanceModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/blogModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/blogModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/careerModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/careerModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/certificatesHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/certificatesHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/certificatesManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/certificatesManagementModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/columnModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/columnModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/dailyBookModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/dailyBookModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/dashboardManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/dashboardManagementModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/eventModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/eventModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/examGroupModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/examGroupModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/examHasAnswerSheetModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/examHasAnswerSheetModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/examModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/examModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/feeReminderTypeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/feeReminderTypeModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/feedBackModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/feedBackModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/generateIdCardModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/generateIdCardModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/holidayModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/holidayModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/index.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/index.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/informationSupportModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/informationSupportModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/inquiryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/inquiryModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/invoiceModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/invoiceModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/jobApplyModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/jobApplyModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/photosGalleryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/photosGalleryModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/plannerModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/plannerModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/addDefaultAttributesPlugin.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/addDefaultAttributesPlugin.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInQueryPlugin.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInQueryPlugin.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInResponsePlugin.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInResponsePlugin.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/replaceTeacherModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/replaceTeacherModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/schoolFeeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/schoolFeeModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/subjectIndexModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/subjectIndexModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/subscriptionPlanModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/subscriptionPlanModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/taskManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/uniqueNumberCounterModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/uniqueNumberCounterModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/userDetailsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/userDetailsModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/userDoc.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/userDoc.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/userInstituteMetaModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/userInstituteMetaModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/userSchoolMetaModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/userSchoolMetaModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/videoAnalystModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/videoAnalystModel.js +0 -0
- /package/dist/{models → cjs/models}/mongodb/walletTransactionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/mongodb/walletTransactionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/SubCategoriesModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/SubCategoriesModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/academicCalendarModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/academicCalendarModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/accountHasReceiptDetailsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/accountHasReceiptDetailsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/announcementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/announcementModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/areaModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/areaModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/bankAccountDetailsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/bankAccountDetailsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/bannerModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/bannerModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/batchModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/batchModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/batchSubjectBookAssessmentModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/batchSubjectBookAssessmentModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/batchSubjectProjectAssessmentModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/batchSubjectProjectAssessmentModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/bookAssessmentDateModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/bookAssessmentDateModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/categoriesModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/categoriesModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/cityModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/cityModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/classRoomModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/classRoomModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/cloudStorageModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/cloudStorageModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/coinPurchaseOfferModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/coinPurchaseOfferModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/contactFeedBackModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/contactFeedBackModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/countryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/countryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/courseHasVisitorsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/courseHasVisitorsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/courseModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/courseModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/driverModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/driverModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/entityGroupModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/entityGroupModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/facilityModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/facilityModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/featureActionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/featureActionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeHistoryDetailsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeHistoryDetailsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeReminderModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeReminderModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeReminderSettingModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeReminderSettingModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeTypeHasTermsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeTypeHasTermsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feeTypeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feeTypeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/feesCollectionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/feesCollectionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/fileStorageModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/fileStorageModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/floorManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/floorManagementModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/greetingsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/greetingsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/homeWorkModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/homeWorkModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/index.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/index.js +0 -0
- /package/dist/{models → cjs/models}/psql/instituteEntityModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/instituteEntityModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/instituteEntityTypeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/instituteEntityTypeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/instituteModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/instituteModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/instituteSubscriptionPlanModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/instituteSubscriptionPlanModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/inventoryHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/inventoryHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/inventoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/inventoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/lectureHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/lectureHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/lectureModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/lectureModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/masterLeaveModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/masterLeaveModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/moduleFeatureModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/moduleFeatureModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/moduleModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/moduleModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/offerModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/offerModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/paymentTermsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/paymentTermsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/pdcChequeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/pdcChequeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/pdcHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/pdcHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/pincodeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/pincodeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/productModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/productModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/projectAssessmentOptionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/projectAssessmentOptionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/roleModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/roleModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/rulesRegulationModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/rulesRegulationModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/schoolFeeCollectionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/schoolFeeCollectionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/schoolOfferModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/schoolOfferModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/sendNotificationModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/sendNotificationModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/slotModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/slotModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/stateModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/stateModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/subjectHasFeeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/subjectHasFeeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/subjectHasPayFeeHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/subjectHasPayFeeHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/syllabusModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/syllabusModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/testimonialModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/testimonialModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/toDoModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/toDoModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/tokenModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/tokenModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/tripModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/tripModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/typeManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/typeManagementModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userBookAssessmentModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userBookAssessmentModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userFeeTypeByAccountModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userFeeTypeByAccountModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userFeeTypeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userFeeTypeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasAnnouncementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasAnnouncementModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasBatchModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasBatchModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasCourseModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasCourseModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasDeviceModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasDeviceModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasFeeTermsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasFeeTermsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasFileModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasFileModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasHomeWorkModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasHomeWorkModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasInventoryHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasInventoryHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasInventoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasInventoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasLeaveHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasLeaveHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasLeaveModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasLeaveModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasOfferModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasOfferModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasParentModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasParentModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasRoleModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasRoleModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasRollNumberModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasRollNumberModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasStorageModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasStorageModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userHasSubjectFeeModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userHasSubjectFeeModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userLeaveRequestModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userLeaveRequestModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutDetailsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutDetailsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userPayoutModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userProjectAssessmentOptionModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userProjectAssessmentOptionModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/userRequiredStepsModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/userRequiredStepsModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/vehicleModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/vehicleModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/vendorManagementModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/vendorManagementModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/walletHistoryModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/walletHistoryModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/walletModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/walletModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/workingDayModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/workingDayModel.js +0 -0
- /package/dist/{models → cjs/models}/psql/workingShiftModel.d.ts +0 -0
- /package/dist/{models → cjs/models}/psql/workingShiftModel.js +0 -0
- /package/dist/{services → cjs/services}/Concrete/mongooseCommonService.d.ts +0 -0
- /package/dist/{services → cjs/services}/Concrete/sequelizeCommonService.d.ts +0 -0
- /package/dist/{services → cjs/services}/Contracts/IMongooseCommonService.d.ts +0 -0
- /package/dist/{services → cjs/services}/Contracts/IMongooseCommonService.js +0 -0
- /package/dist/{services → cjs/services}/Contracts/ISequelizeCommonService.d.ts +0 -0
- /package/dist/{services → cjs/services}/Contracts/ISequelizeCommonService.js +0 -0
- /package/dist/{types → cjs/types}/academicCalendarType.d.ts +0 -0
- /package/dist/{types → cjs/types}/academicCalendarType.js +0 -0
- /package/dist/{types → cjs/types}/accountHasReceiptDetailsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/accountHasReceiptDetailsType.js +0 -0
- /package/dist/{types → cjs/types}/announcementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/announcementType.js +0 -0
- /package/dist/{types → cjs/types}/approveRequestType.d.ts +0 -0
- /package/dist/{types → cjs/types}/approveRequestType.js +0 -0
- /package/dist/{types → cjs/types}/areaType.d.ts +0 -0
- /package/dist/{types → cjs/types}/areaType.js +0 -0
- /package/dist/{types → cjs/types}/attendanceType.d.ts +0 -0
- /package/dist/{types → cjs/types}/attendanceType.js +0 -0
- /package/dist/{types → cjs/types}/bankAccountDetailsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/bankAccountDetailsType.js +0 -0
- /package/dist/{types → cjs/types}/bannerType.d.ts +0 -0
- /package/dist/{types → cjs/types}/bannerType.js +0 -0
- /package/dist/{types → cjs/types}/batchSubjectBookAssessmentType.d.ts +0 -0
- /package/dist/{types → cjs/types}/batchSubjectBookAssessmentType.js +0 -0
- /package/dist/{types → cjs/types}/batchSubjectProjectAssessmentType.d.ts +0 -0
- /package/dist/{types → cjs/types}/batchSubjectProjectAssessmentType.js +0 -0
- /package/dist/{types → cjs/types}/batchType.d.ts +0 -0
- /package/dist/{types → cjs/types}/batchType.js +0 -0
- /package/dist/{types → cjs/types}/blogType.d.ts +0 -0
- /package/dist/{types → cjs/types}/blogType.js +0 -0
- /package/dist/{types → cjs/types}/bookAssessmentDateType.d.ts +0 -0
- /package/dist/{types → cjs/types}/bookAssessmentDateType.js +0 -0
- /package/dist/{types → cjs/types}/careerType.d.ts +0 -0
- /package/dist/{types → cjs/types}/careerType.js +0 -0
- /package/dist/{types → cjs/types}/categoriesType.d.ts +0 -0
- /package/dist/{types → cjs/types}/categoriesType.js +0 -0
- /package/dist/{types → cjs/types}/certificatesHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/certificatesHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/certificatesManagementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/certificatesManagementType.js +0 -0
- /package/dist/{types → cjs/types}/classRoomType.d.ts +0 -0
- /package/dist/{types → cjs/types}/classRoomType.js +0 -0
- /package/dist/{types → cjs/types}/cloudStorageType.d.ts +0 -0
- /package/dist/{types → cjs/types}/cloudStorageType.js +0 -0
- /package/dist/{types → cjs/types}/coinPurchaseOfferType.d.ts +0 -0
- /package/dist/{types → cjs/types}/coinPurchaseOfferType.js +0 -0
- /package/dist/{types → cjs/types}/commonType.d.ts +0 -0
- /package/dist/{types → cjs/types}/commonType.js +0 -0
- /package/dist/{types → cjs/types}/contactFeedBackType.d.ts +0 -0
- /package/dist/{types → cjs/types}/contactFeedBackType.js +0 -0
- /package/dist/{types → cjs/types}/courseHasVisitorsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/courseHasVisitorsType.js +0 -0
- /package/dist/{types → cjs/types}/courseType.d.ts +0 -0
- /package/dist/{types → cjs/types}/courseType.js +0 -0
- /package/dist/{types → cjs/types}/dailyBookType.d.ts +0 -0
- /package/dist/{types → cjs/types}/dailyBookType.js +0 -0
- /package/dist/{types → cjs/types}/dashboardManagementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/dashboardManagementType.js +0 -0
- /package/dist/{types → cjs/types}/driverType.d.ts +0 -0
- /package/dist/{types → cjs/types}/driverType.js +0 -0
- /package/dist/{types → cjs/types}/entityGroupType.d.ts +0 -0
- /package/dist/{types → cjs/types}/entityGroupType.js +0 -0
- /package/dist/{types → cjs/types}/eventType.d.ts +0 -0
- /package/dist/{types → cjs/types}/eventType.js +0 -0
- /package/dist/{types → cjs/types}/examGroupType.d.ts +0 -0
- /package/dist/{types → cjs/types}/examGroupType.js +0 -0
- /package/dist/{types → cjs/types}/examHasAnswerSheetType.d.ts +0 -0
- /package/dist/{types → cjs/types}/examHasAnswerSheetType.js +0 -0
- /package/dist/{types → cjs/types}/examType.d.ts +0 -0
- /package/dist/{types → cjs/types}/examType.js +0 -0
- /package/dist/{types → cjs/types}/facilityType.d.ts +0 -0
- /package/dist/{types → cjs/types}/facilityType.js +0 -0
- /package/dist/{types → cjs/types}/featureActionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/featureActionType.js +0 -0
- /package/dist/{types → cjs/types}/feeHistoryDetailsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeHistoryDetailsType.js +0 -0
- /package/dist/{types → cjs/types}/feeHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/feeReminderSettingType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeReminderSettingType.js +0 -0
- /package/dist/{types → cjs/types}/feeReminderType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeReminderType.js +0 -0
- /package/dist/{types → cjs/types}/feeReminderTypeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeReminderTypeType.js +0 -0
- /package/dist/{types → cjs/types}/feeTypeHasTermsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeTypeHasTermsType.js +0 -0
- /package/dist/{types → cjs/types}/feeTypeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feeTypeType.js +0 -0
- /package/dist/{types → cjs/types}/feedBackType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feedBackType.js +0 -0
- /package/dist/{types → cjs/types}/feesCollectionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/feesCollectionType.js +0 -0
- /package/dist/{types → cjs/types}/fileStorageType.d.ts +0 -0
- /package/dist/{types → cjs/types}/fileStorageType.js +0 -0
- /package/dist/{types → cjs/types}/floormanagementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/floormanagementType.js +0 -0
- /package/dist/{types → cjs/types}/generateIdCardType.d.ts +0 -0
- /package/dist/{types → cjs/types}/generateIdCardType.js +0 -0
- /package/dist/{types → cjs/types}/greetingsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/greetingsType.js +0 -0
- /package/dist/{types → cjs/types}/holidayType.d.ts +0 -0
- /package/dist/{types → cjs/types}/holidayType.js +0 -0
- /package/dist/{types → cjs/types}/homeWorkType.d.ts +0 -0
- /package/dist/{types → cjs/types}/homeWorkType.js +0 -0
- /package/dist/{types → cjs/types}/informationSupportType.d.ts +0 -0
- /package/dist/{types → cjs/types}/informationSupportType.js +0 -0
- /package/dist/{types → cjs/types}/inquiryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/inquiryType.js +0 -0
- /package/dist/{types → cjs/types}/instituteEntityType.d.ts +0 -0
- /package/dist/{types → cjs/types}/instituteEntityType.js +0 -0
- /package/dist/{types → cjs/types}/instituteEntityTypeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/instituteEntityTypeType.js +0 -0
- /package/dist/{types → cjs/types}/instituteSubscriptionPlanType.d.ts +0 -0
- /package/dist/{types → cjs/types}/instituteSubscriptionPlanType.js +0 -0
- /package/dist/{types → cjs/types}/instituteType.d.ts +0 -0
- /package/dist/{types → cjs/types}/instituteType.js +0 -0
- /package/dist/{types → cjs/types}/inventoryHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/inventoryHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/inventoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/inventoryType.js +0 -0
- /package/dist/{types → cjs/types}/jobApply.d.ts +0 -0
- /package/dist/{types → cjs/types}/jobApply.js +0 -0
- /package/dist/{types → cjs/types}/lectureHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/lectureHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/lectureType.d.ts +0 -0
- /package/dist/{types → cjs/types}/lectureType.js +0 -0
- /package/dist/{types → cjs/types}/masterLeaveType.d.ts +0 -0
- /package/dist/{types → cjs/types}/masterLeaveType.js +0 -0
- /package/dist/{types → cjs/types}/moduleFeatureType.d.ts +0 -0
- /package/dist/{types → cjs/types}/moduleFeatureType.js +0 -0
- /package/dist/{types → cjs/types}/moduleType.d.ts +0 -0
- /package/dist/{types → cjs/types}/moduleType.js +0 -0
- /package/dist/{types → cjs/types}/offerType.d.ts +0 -0
- /package/dist/{types → cjs/types}/offerType.js +0 -0
- /package/dist/{types → cjs/types}/paymentTermsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/paymentTermsType.js +0 -0
- /package/dist/{types → cjs/types}/pdcChequeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/pdcChequeType.js +0 -0
- /package/dist/{types → cjs/types}/pdcHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/pdcHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/photosGalleryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/photosGalleryType.js +0 -0
- /package/dist/{types → cjs/types}/plannerType.d.ts +0 -0
- /package/dist/{types → cjs/types}/plannerType.js +0 -0
- /package/dist/{types → cjs/types}/productType.d.ts +0 -0
- /package/dist/{types → cjs/types}/productType.js +0 -0
- /package/dist/{types → cjs/types}/projectAssessmentOptionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/projectAssessmentOptionType.js +0 -0
- /package/dist/{types → cjs/types}/roleType.d.ts +0 -0
- /package/dist/{types → cjs/types}/roleType.js +0 -0
- /package/dist/{types → cjs/types}/rulesRegulationType.d.ts +0 -0
- /package/dist/{types → cjs/types}/rulesRegulationType.js +0 -0
- /package/dist/{types → cjs/types}/schoolFeeCollectionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/schoolFeeCollectionType.js +0 -0
- /package/dist/{types → cjs/types}/schoolFeeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/schoolFeeType.js +0 -0
- /package/dist/{types → cjs/types}/schoolOfferType.d.ts +0 -0
- /package/dist/{types → cjs/types}/schoolOfferType.js +0 -0
- /package/dist/{types → cjs/types}/sendNotificationType.d.ts +0 -0
- /package/dist/{types → cjs/types}/sendNotificationType.js +0 -0
- /package/dist/{types → cjs/types}/slotType.d.ts +0 -0
- /package/dist/{types → cjs/types}/slotType.js +0 -0
- /package/dist/{types → cjs/types}/subCategoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/subCategoryType.js +0 -0
- /package/dist/{types → cjs/types}/subjectHasFeeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/subjectHasFeeType.js +0 -0
- /package/dist/{types → cjs/types}/subjectHasPayFeeHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/subjectHasPayFeeHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/subjectIndexType.d.ts +0 -0
- /package/dist/{types → cjs/types}/subjectIndexType.js +0 -0
- /package/dist/{types → cjs/types}/subscriptionPlanType.d.ts +0 -0
- /package/dist/{types → cjs/types}/subscriptionPlanType.js +0 -0
- /package/dist/{types → cjs/types}/syllabusType.d.ts +0 -0
- /package/dist/{types → cjs/types}/syllabusType.js +0 -0
- /package/dist/{types → cjs/types}/taskManagementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/taskManagementType.js +0 -0
- /package/dist/{types → cjs/types}/testimonialType.d.ts +0 -0
- /package/dist/{types → cjs/types}/testimonialType.js +0 -0
- /package/dist/{types → cjs/types}/toDoType.d.ts +0 -0
- /package/dist/{types → cjs/types}/toDoType.js +0 -0
- /package/dist/{types → cjs/types}/tripType.d.ts +0 -0
- /package/dist/{types → cjs/types}/tripType.js +0 -0
- /package/dist/{types → cjs/types}/typeManagementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/typeManagementType.js +0 -0
- /package/dist/{types → cjs/types}/uniqueNumberCounterType.d.ts +0 -0
- /package/dist/{types → cjs/types}/uniqueNumberCounterType.js +0 -0
- /package/dist/{types → cjs/types}/userBookAssessmentType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userBookAssessmentType.js +0 -0
- /package/dist/{types → cjs/types}/userDetailsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userDetailsType.js +0 -0
- /package/dist/{types → cjs/types}/userFeeTypeByAccountType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userFeeTypeByAccountType.js +0 -0
- /package/dist/{types → cjs/types}/userFeeTypeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userFeeTypeType.js +0 -0
- /package/dist/{types → cjs/types}/userHasAnnouncementType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasAnnouncementType.js +0 -0
- /package/dist/{types → cjs/types}/userHasBatchType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasBatchType.js +0 -0
- /package/dist/{types → cjs/types}/userHasCourseType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasCourseType.js +0 -0
- /package/dist/{types → cjs/types}/userHasDeviceType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasDeviceType.js +0 -0
- /package/dist/{types → cjs/types}/userHasFeeTermsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasFeeTermsType.js +0 -0
- /package/dist/{types → cjs/types}/userHasFileType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasFileType.js +0 -0
- /package/dist/{types → cjs/types}/userHasHomeWorkType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasHomeWorkType.js +0 -0
- /package/dist/{types → cjs/types}/userHasInventoryHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasInventoryHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/userHasInventoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasInventoryType.js +0 -0
- /package/dist/{types → cjs/types}/userHasLeaveHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasLeaveHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/userHasLeaveType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasLeaveType.js +0 -0
- /package/dist/{types → cjs/types}/userHasOffer.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasOffer.js +0 -0
- /package/dist/{types → cjs/types}/userHasParentType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasParentType.js +0 -0
- /package/dist/{types → cjs/types}/userHasRoleType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasRoleType.js +0 -0
- /package/dist/{types → cjs/types}/userHasRollNumberType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasRollNumberType.js +0 -0
- /package/dist/{types → cjs/types}/userHasStorageType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasStorageType.js +0 -0
- /package/dist/{types → cjs/types}/userHasSubjectFeeType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userHasSubjectFeeType.js +0 -0
- /package/dist/{types → cjs/types}/userInstituteMetaType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userInstituteMetaType.js +0 -0
- /package/dist/{types → cjs/types}/userLeaveRequestType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userLeaveRequestType.js +0 -0
- /package/dist/{types → cjs/types}/userMetaType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userMetaType.js +0 -0
- /package/dist/{types → cjs/types}/userPayoutDetailsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userPayoutDetailsType.js +0 -0
- /package/dist/{types → cjs/types}/userPayoutHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userPayoutHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/userPayoutType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userPayoutType.js +0 -0
- /package/dist/{types → cjs/types}/userProjectAssessmentOptionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userProjectAssessmentOptionType.js +0 -0
- /package/dist/{types → cjs/types}/userRequiredStepsType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userRequiredStepsType.js +0 -0
- /package/dist/{types → cjs/types}/userSchoolMetaType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userSchoolMetaType.js +0 -0
- /package/dist/{types → cjs/types}/userType.d.ts +0 -0
- /package/dist/{types → cjs/types}/userType.js +0 -0
- /package/dist/{types → cjs/types}/vehicleType.d.ts +0 -0
- /package/dist/{types → cjs/types}/vehicleType.js +0 -0
- /package/dist/{types → cjs/types}/vendorType.d.ts +0 -0
- /package/dist/{types → cjs/types}/vendorType.js +0 -0
- /package/dist/{types → cjs/types}/videoAnalystType.d.ts +0 -0
- /package/dist/{types → cjs/types}/videoAnalystType.js +0 -0
- /package/dist/{types → cjs/types}/walletHistoryType.d.ts +0 -0
- /package/dist/{types → cjs/types}/walletHistoryType.js +0 -0
- /package/dist/{types → cjs/types}/walletTransactionType.d.ts +0 -0
- /package/dist/{types → cjs/types}/walletTransactionType.js +0 -0
- /package/dist/{types → cjs/types}/walletType.d.ts +0 -0
- /package/dist/{types → cjs/types}/walletType.js +0 -0
- /package/dist/{types → cjs/types}/workingDayType.d.ts +0 -0
- /package/dist/{types → cjs/types}/workingDayType.js +0 -0
- /package/dist/{types → cjs/types}/workingShiftType.d.ts +0 -0
- /package/dist/{types → cjs/types}/workingShiftType.js +0 -0
|
@@ -0,0 +1,1055 @@
|
|
|
1
|
+
export declare enum ERROR_MESSAGES {
|
|
2
|
+
CREATE_FAIL = "Unable to save data in DB!",
|
|
3
|
+
GET_FAIL = "Unable to retrieve data from DB!",
|
|
4
|
+
UPDATE_FAIL = "Unable to update data in DB!",
|
|
5
|
+
DELETE_FAIL = "Unable to delete data from DB!",
|
|
6
|
+
RESOURCE_NOT_ALLOW = "You do not have access permissions for requested resource!!",
|
|
7
|
+
DUPLICATE_USER_EMAIL = "User email already exists!",
|
|
8
|
+
PASSWORD_MISMATCH_FAIL = "Invalid credentials!",
|
|
9
|
+
GENERIC = "Something went wrong!",
|
|
10
|
+
NOT_FOUND = "Unable to find the requested resource!",
|
|
11
|
+
UNCAUGHT_EXCEPTION = "Uncaught Exception thrown!",
|
|
12
|
+
UNHANDLED_REJECTION = "Unhandled Exception thrown!",
|
|
13
|
+
USER_NOT_FOUND = "User not found!",
|
|
14
|
+
GOOGLE_USER_NOT_FOUND = "User not found. Please Sign Up Using Gmail First",
|
|
15
|
+
META_USER_NOT_FOUND = "User not found. Please Sign Up Using Meta First",
|
|
16
|
+
APPLE_USER_NOT_FOUND = "User not found. Please Sign Up Using Apple First",
|
|
17
|
+
TOKEN_NOT_FOUND = "Token not found!",
|
|
18
|
+
USER_UPDATE_FAIL = "Unable to update user data!",
|
|
19
|
+
UNAUTHORIZED = "UnAuthorized Person",
|
|
20
|
+
DUPLICATE_HOLIDAY = "Duplicate Holiday",
|
|
21
|
+
DUPLICATE_EVENT = "Duplicate Event",
|
|
22
|
+
INVALID_FILE_FORMAT = "Unsupported file format. Only Excel and CSV are supported!",
|
|
23
|
+
APP_TYPE_NOT_FOUND = "App type not found!",
|
|
24
|
+
INVALID_DATA = "Invalid data",
|
|
25
|
+
NOT_VERIFIED = "User not verified!",
|
|
26
|
+
USER_EXIT_IN_OTHER_APP = "User account already exist with another app",
|
|
27
|
+
APPLE_USEREMAIL__NOT_FOUND = "User email not found. Please add Email In your apple id"
|
|
28
|
+
}
|
|
29
|
+
export declare enum USER_ERROR_MESSAGES {
|
|
30
|
+
CREATE_FAIL = "Unable to save user data!",
|
|
31
|
+
USING_OWN_EMAIL = "You are using your email!",
|
|
32
|
+
GET_FAIL = "Unable to retrieve user data!",
|
|
33
|
+
UPDATE_FAIL = "Unable to update user data!",
|
|
34
|
+
DELETE_FAIL = "Unable to delete user data!",
|
|
35
|
+
NOT_FOUND = "Unable to find user!",
|
|
36
|
+
EMAIL_VERIFICATION_PENDING = "Your email verification is pending!",
|
|
37
|
+
EMAIL_VERIFICATION_PENDING_OR_USER_NOT_FOUND = "User not found or email verification is pending!",
|
|
38
|
+
INVALID_VERIFICATION_OTP = "Otp is invalid or expired!",
|
|
39
|
+
CHILDS_NOT_FOUND = "Unable to find child users!",
|
|
40
|
+
NOT_JOIN_INSTITUTE = "User has not joined any institutes!",
|
|
41
|
+
INSTITUTE_NOT_FOUND = "Institute not found or institute ID is required.",
|
|
42
|
+
OLD_PASSWORD_SAME = "New password cannot be the same as old password.",
|
|
43
|
+
INVALID_DATA = "Invalid data provided for user operation.",
|
|
44
|
+
DELETE_FAIL_HAS_INSTITUTE_JOINED = "Unable to delete account: user data linked with existing institute.",
|
|
45
|
+
UPDATE_YOUR_PROFILE = "Invalid Request Please Update Your Profile , In Profile Have not Request Subject",
|
|
46
|
+
UID_NO_EXITS = "Given Uid No already exits"
|
|
47
|
+
}
|
|
48
|
+
export declare const USER_FEE_TYPE_ACCOUNT_ERROR_MESSAGES: {
|
|
49
|
+
NOT_FOUND: string;
|
|
50
|
+
CREATE_FAILED: string;
|
|
51
|
+
UPDATE_FAILED: string;
|
|
52
|
+
DELETE_FAILED: string;
|
|
53
|
+
INVALID_ID: string;
|
|
54
|
+
INVALID_USER: string;
|
|
55
|
+
INVALID_ACCOUNT: string;
|
|
56
|
+
INVALID_FEE_COLLECTION: string;
|
|
57
|
+
USER_NOT_ACCEPTED: string;
|
|
58
|
+
DUPLICATE_ENTRY: string;
|
|
59
|
+
};
|
|
60
|
+
export declare enum BANNER_ERROR_MESSAGES {
|
|
61
|
+
CREATE_FAIL = "Unable to save banner data!",
|
|
62
|
+
GET_FAIL = "Unable to retrieve banner data!",
|
|
63
|
+
UPDATE_FAIL = "Unable to update banner data!",
|
|
64
|
+
DELETE_FAIL = "Unable to delete banner data!",
|
|
65
|
+
NOT_FOUND = "Unable to find banner!",
|
|
66
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for banner data",
|
|
67
|
+
ACTIVE_BANNER_LIMIT = "Active banner limit reached!"
|
|
68
|
+
}
|
|
69
|
+
export declare enum APPROVE_REQUEST_ERROR_MESSAGES {
|
|
70
|
+
CREATE_FAIL = "Unable to save request data!",
|
|
71
|
+
GET_FAIL = "Unable to retrieve request data!",
|
|
72
|
+
UPDATE_FAIL = "Unable to update request data!",
|
|
73
|
+
DELETE_FAIL = "Unable to delete request data!",
|
|
74
|
+
NOT_FOUND = "Unable to find request!",
|
|
75
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for request data"
|
|
76
|
+
}
|
|
77
|
+
export declare enum INQUIRY_ERROR_MESSAGES {
|
|
78
|
+
CREATE_FAIL = "Unable to create inquiry!",
|
|
79
|
+
GET_FAIL = "Unable to retrieve inquiry data!",
|
|
80
|
+
UPDATE_FAIL = "Unable to update inquiry!",
|
|
81
|
+
DELETE_FAIL = "Unable to delete inquiry!",
|
|
82
|
+
NOT_FOUND = "Inquiry not found!",
|
|
83
|
+
INSTITUTE_NOT_FOUND = "Institute not found for inquiry data!",
|
|
84
|
+
USER_ALREADY_EXIT = "user already in requested instituted",
|
|
85
|
+
USER_META_DATA_CREATE_FAIL = "Failed to add user to the institute.",
|
|
86
|
+
DATA_REQUIRED = "user batch data is required",
|
|
87
|
+
EMAIL_NOT_HAVE_SAME = "user and parent email not have same"
|
|
88
|
+
}
|
|
89
|
+
export declare enum INFORMATION_SUPPORT_ERROR_MESSAGES {
|
|
90
|
+
CREATE_FAIL = "Unable to create information support!",
|
|
91
|
+
GET_FAIL = "Unable to retrieve information support data!",
|
|
92
|
+
UPDATE_FAIL = "Unable to update information support!",
|
|
93
|
+
DELETE_FAIL = "Unable to delete information support!",
|
|
94
|
+
NOT_FOUND = "Information support not found!",
|
|
95
|
+
NUMBER_EXITS = "Information support number already exists!"
|
|
96
|
+
}
|
|
97
|
+
export declare enum BANK_ACCOUNT_DETAILS_ERROR_MESSAGES {
|
|
98
|
+
CREATE_FAIL = "Unable to save bank account details!",
|
|
99
|
+
GET_FAIL = "Unable to retrieve bank account details!",
|
|
100
|
+
UPDATE_FAIL = "Unable to update bank account details!",
|
|
101
|
+
DELETE_FAIL = "Unable to delete bank account details!",
|
|
102
|
+
NOT_FOUND = "Bank account details not found!",
|
|
103
|
+
INSTITUTE_NOT_FOUND = "Institute not found for bank account details!",
|
|
104
|
+
ACCOUNT_NOT_SET_DEFAULT = "you not set as default account only self account set as default",
|
|
105
|
+
INVALID_ACCOUNT_NUMBER = "Invalid account number format for bank",
|
|
106
|
+
ACCOUNT_LINKED = "Account is linked to other data and cannot be deleted!",
|
|
107
|
+
INVALID_ISFC_CODE = "Invalid IFSC code format for bank",
|
|
108
|
+
CAN_NOT_CHANGE_DEFAULT_STATUS = "At least one default account is required."
|
|
109
|
+
}
|
|
110
|
+
export declare enum SCHOOL_SHIFT_ERROR_MESSAGES {
|
|
111
|
+
CREATE_FAIL = "Unable to save school shift data!",
|
|
112
|
+
GET_FAIL = "Unable to retrieve school shift data!",
|
|
113
|
+
UPDATE_FAIL = "Unable to update school shift data!",
|
|
114
|
+
NOT_FOUND = "Unable to find school shift!",
|
|
115
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for school shift data",
|
|
116
|
+
ALREADY_EXISTS = "School shift already exists!"
|
|
117
|
+
}
|
|
118
|
+
export declare enum ACCOUNT_RECEIPT_ERROR_MESSAGES {
|
|
119
|
+
CREATE_FAIL = "Unable to save account receipt data!",
|
|
120
|
+
GET_FAIL = "Unable to retrieve account receipt data!",
|
|
121
|
+
UPDATE_FAIL = "Unable to update account receipt data!",
|
|
122
|
+
NOT_FOUND = "Account receipt not found!",
|
|
123
|
+
INSTITUTE_NOT_FOUND = "Institute not found for account receipt data!",
|
|
124
|
+
ALREADY_EXISTS = "Account receipt data already exists!"
|
|
125
|
+
}
|
|
126
|
+
export declare const SCHOOL_FEES_COLLECTION_ERROR_MESSAGES: {
|
|
127
|
+
NOT_FOUND: string;
|
|
128
|
+
YOUR_FEE_AMOUNT_WRONG: string;
|
|
129
|
+
};
|
|
130
|
+
export declare enum FEEDBACK_ERROR_MESSAGES {
|
|
131
|
+
CREATE_FAIL = "Unable to save feedback data!",
|
|
132
|
+
GET_FAIL = "Unable to retrieve feedback data!",
|
|
133
|
+
UPDATE_FAIL = "Unable to update feedback data!",
|
|
134
|
+
NOT_FOUND = "Feedback not found!",
|
|
135
|
+
INSTITUTE_NOT_FOUND = "Institute not found for feedback data!",
|
|
136
|
+
ALREADY_EXISTS = "Feedback data already exists!"
|
|
137
|
+
}
|
|
138
|
+
export declare enum SUBSCRIPTION_ERROR_MESSAGES {
|
|
139
|
+
CREATE_FAIL = "Unable to create subscription!",
|
|
140
|
+
GET_FAIL = "Unable to retrieve subscription data!",
|
|
141
|
+
UPDATE_FAIL = "Unable to update subscription!",
|
|
142
|
+
NOT_FOUND = "Subscription not found!",
|
|
143
|
+
INSTITUTE_NOT_FOUND = "Institute not found for subscription data!",
|
|
144
|
+
ALREADY_EXISTS = "Subscription already exists!"
|
|
145
|
+
}
|
|
146
|
+
export declare enum LEAVE_ERROR_MESSAGES {
|
|
147
|
+
CREATE_FAIL = "Unable to save leave data!",
|
|
148
|
+
GET_FAIL = "Unable to retrieve leave data!",
|
|
149
|
+
UPDATE_FAIL = "Unable to update leave data!",
|
|
150
|
+
DELETE_FAIL = "Unable to delete leave data!",
|
|
151
|
+
NOT_FOUND = "Unable to find leave!",
|
|
152
|
+
INSTITUTE_NOT_FOUND = "Institue Not Found for leave data",
|
|
153
|
+
LIMIT_OVER = "leave limit over",
|
|
154
|
+
TAKE_LEAVE_ALREADY = "You have already applied for or taken leave during the selected date and time."
|
|
155
|
+
}
|
|
156
|
+
export declare enum MASTER_LEAVE_ERROR_MESSAGES {
|
|
157
|
+
CREATE_FAIL = "Unable to save master leave data!",
|
|
158
|
+
GET_FAIL = "Unable to retrieve master leave data!",
|
|
159
|
+
UPDATE_FAIL = "Unable to update master leave data!",
|
|
160
|
+
DELETE_FAIL = "Unable to delete master leave data!",
|
|
161
|
+
NOT_FOUND = "Unable to find master leave data !",
|
|
162
|
+
INSTITUTE_NOT_FOUND = "Institue Not Found for master leave data",
|
|
163
|
+
INVALID_TYPE_MANAGEMENT_ID = "Invalid typeManagementId: The type must be LEAVE.",
|
|
164
|
+
INVALID_TERM_DURATION = "Invalid termDuration value.",
|
|
165
|
+
INVALID_DATA = "required data not given",
|
|
166
|
+
ALREADY_EXIST = "already Leave Data Exits"
|
|
167
|
+
}
|
|
168
|
+
export declare enum FEE_HISTORY_ERROR_MESSAGES {
|
|
169
|
+
CREATE_FAIL = "Unable to save fee history data!",
|
|
170
|
+
GET_FAIL = "Unable to retrieve fee history data!",
|
|
171
|
+
UPDATE_FAIL = "Unable to update fee history data!",
|
|
172
|
+
DELETE_FAIL = "Unable to delete fee history data!",
|
|
173
|
+
NOT_FOUND = "Unable to find fee history!",
|
|
174
|
+
NOT_UPDATE = "you can not update data this was not updatable data ",
|
|
175
|
+
SUBJECT_FEE_NOT_FOUND = "Unable to find subject fee history!",
|
|
176
|
+
INSTITUTE_NOT_FOUND = "Institue Not Found for fee history data",
|
|
177
|
+
NO_FEE_DETAILS = "No fee details found for this history ID"
|
|
178
|
+
}
|
|
179
|
+
export declare enum SUBJECT_HAS_FEE_ERROR_MESSAGES {
|
|
180
|
+
CREATE_FAIL = "Unable to save subject fee data!",
|
|
181
|
+
GET_FAIL = "Unable to retrieve subject fee data!",
|
|
182
|
+
UPDATE_FAIL = "Unable to update subject fee data!",
|
|
183
|
+
DELETE_FAIL = "Unable to delete subject fee data!",
|
|
184
|
+
NOT_FOUND = "Unable to find subject fee!",
|
|
185
|
+
INSTITUTE_NOT_FOUND = "Institue Not Found for subject fee data",
|
|
186
|
+
FEE_ADDED = "The fee for the subject has already been added."
|
|
187
|
+
}
|
|
188
|
+
export declare enum USER_HAS_INVENTORY_ERROR_MESSAGES {
|
|
189
|
+
CREATE_FAIL = "Unable to save User has inventory data!",
|
|
190
|
+
GET_FAIL = "Unable to retrieve User has inventory data!",
|
|
191
|
+
UPDATE_FAIL = "Unable to update User has inventory data!",
|
|
192
|
+
DELETE_FAIL = "Unable to delete User has inventory data!",
|
|
193
|
+
NOT_FOUND = "Unable to find User has inventory!",
|
|
194
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for User has inventory data",
|
|
195
|
+
INVENTORY_NOT_FOUND = "Inventory not found in institute",
|
|
196
|
+
QUANTITY_REQUIRED = "Return Data not given",
|
|
197
|
+
QUANTITY_NOT_AVAILABLE = "The requested quantity is not available.",
|
|
198
|
+
INVALID_INPUT = "Please check the provided data."
|
|
199
|
+
}
|
|
200
|
+
export declare enum CATEGORY_ERROR_MESSAGES {
|
|
201
|
+
CREATE_FAIL = "Unable to save Category data!",
|
|
202
|
+
GET_FAIL = "Unable to retrieve Category data!",
|
|
203
|
+
UPDATE_FAIL = "Unable to update Category data!",
|
|
204
|
+
DELETE_FAIL = "Unable to delete Category data!",
|
|
205
|
+
NOT_FOUND = "Unable to find Category!",
|
|
206
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for Category data",
|
|
207
|
+
CATEGORY_IN_USE = "Category is in use by inventory, cannot be deleted!",
|
|
208
|
+
CATEGORY_IN_USE_IN_SUB_CATEGORY = "Category is in use by sub category, cannot be deleted!"
|
|
209
|
+
}
|
|
210
|
+
export declare enum INVENTORY_ERROR_MESSAGES {
|
|
211
|
+
CREATE_FAIL = "Unable to save Inventory data!",
|
|
212
|
+
GET_FAIL = "Unable to retrieve Inventory data!",
|
|
213
|
+
UPDATE_FAIL = "Unable to update Inventory data!",
|
|
214
|
+
DELETE_FAIL = "Unable to delete Inventory data!",
|
|
215
|
+
NOT_FOUND = "Unable to find Inventory!",
|
|
216
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for Inventory data",
|
|
217
|
+
ALREADY_EXISTS = "Inventory already exists! change the name",
|
|
218
|
+
WRONG_DATA = "wrong data enter"
|
|
219
|
+
}
|
|
220
|
+
export declare enum PAYMENT_TERMS_ERROR_MESSAGES {
|
|
221
|
+
CREATE_FAIL = "Unable to save payment terms data!",
|
|
222
|
+
GET_FAIL = "Unable to retrieve payment terms data!",
|
|
223
|
+
UPDATE_FAIL = "Unable to update payment terms data!",
|
|
224
|
+
DELETE_FAIL = "Unable to delete payment terms data!",
|
|
225
|
+
NOT_FOUND = "Payment terms not found!",
|
|
226
|
+
DUE_DATE = "Due date is required for installment calculation.",
|
|
227
|
+
INVALID_TERM = "Invalid payment term type",
|
|
228
|
+
INSTITUTE_NOT_FOUND = "Institute not found for payment terms data!",
|
|
229
|
+
ALREADY_EXISTS = "Payment terms already exist! Please change the name.",
|
|
230
|
+
WRONG_DATA = "Invalid data entered!",
|
|
231
|
+
DUPLICATE = "Duplicate installment detected for this user."
|
|
232
|
+
}
|
|
233
|
+
export declare enum INVENTORY_HISTORY_ERROR_MESSAGES {
|
|
234
|
+
GET_FAIL = "Unable to retrieve Inventory history data!",
|
|
235
|
+
NOT_FOUND = "Unable to find Inventory history!"
|
|
236
|
+
}
|
|
237
|
+
export declare enum OFFER_ERROR_MESSAGES {
|
|
238
|
+
CREATE_FAIL = "Unable to save offer data!",
|
|
239
|
+
GET_FAIL = "Unable to retrieve offer data!",
|
|
240
|
+
UPDATE_FAIL = "Unable to update offer data!",
|
|
241
|
+
DELETE_FAIL = "Unable to delete offer data!",
|
|
242
|
+
NOT_FOUND = "Unable to find offer!",
|
|
243
|
+
OFFER_EXPIRED = "Offer has expired!",
|
|
244
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for offer data",
|
|
245
|
+
ACTIVE_OFFER_LIMIT = "Active offer limit reached!",
|
|
246
|
+
FEE_AMOUNT_REQUIRED = "Fee amount is required for the offer!",
|
|
247
|
+
APPLICABLE_ON_NOT_FOUND = "Applicable on not found!",
|
|
248
|
+
SELECTED_BANK_OFFER_WRONG = "offer not found or offer have not same account for offer"
|
|
249
|
+
}
|
|
250
|
+
export declare enum FACILITY_ERROR_MESSAGES {
|
|
251
|
+
CREATE_FAIL = "Unable to save facility data!",
|
|
252
|
+
GET_FAIL = "Unable to retrieve facility data!",
|
|
253
|
+
UPDATE_FAIL = "Unable to update facility data!",
|
|
254
|
+
DELETE_FAIL = "Unable to delete facility data!",
|
|
255
|
+
NOT_FOUND = "Facility not found!",
|
|
256
|
+
DUPLICATE = "Duplicate Facility ",
|
|
257
|
+
ALL_DUPLICATE = "All facilities already exist. No new records created."
|
|
258
|
+
}
|
|
259
|
+
export declare enum FEE_TYPE_ERROR_MESSAGES {
|
|
260
|
+
CREATE_FAIL = "Unable to save fee type!",
|
|
261
|
+
GET_FAIL = "Unable to retrieve fee type!",
|
|
262
|
+
UPDATE_FAIL = "Unable to update fee type!",
|
|
263
|
+
DELETE_FAIL = "Unable to delete fee type!",
|
|
264
|
+
NOT_FOUND = "Fee type not found!",
|
|
265
|
+
DUPLICATE = "Duplicate fee type!",
|
|
266
|
+
ALL_DUPLICATE = "All fee types already exist. No new records created.",
|
|
267
|
+
DEFAULT_DATA = "Default data can not be modified! or deleted!",
|
|
268
|
+
CAN_NOT_DELETE = "can not delete feeType because of data have link with this type"
|
|
269
|
+
}
|
|
270
|
+
export declare enum SCHOOL_FEE_ERROR_MESSAGES {
|
|
271
|
+
CREATE_FAIL = "Unable to save school fee!",
|
|
272
|
+
GET_FAIL = "Unable to retrieve school fee!",
|
|
273
|
+
UPDATE_FAIL = "Unable to update school fee!",
|
|
274
|
+
DELETE_FAIL = "Unable to delete school fee!",
|
|
275
|
+
NOT_FOUND = "School fee not found!",
|
|
276
|
+
DUPLICATE = "Duplicate school fee!",
|
|
277
|
+
STD_HAVE_FEE = "In given Standard in some Standard has already fee added",
|
|
278
|
+
ALL_DUPLICATE = "All school fees already exist. No new records created."
|
|
279
|
+
}
|
|
280
|
+
export declare enum USER_FEE_TYPE_ERROR_MESSAGES {
|
|
281
|
+
CREATE_FAIL = "Unable to save user fee type!",
|
|
282
|
+
GET_FAIL = "Unable to retrieve user fee type!",
|
|
283
|
+
UPDATE_FAIL = "Unable to update user fee type!",
|
|
284
|
+
DELETE_FAIL = "Unable to delete user fee type!",
|
|
285
|
+
NOT_FOUND = "user fee type not found!",
|
|
286
|
+
DUPLICATE = "Duplicate user fee type!",
|
|
287
|
+
STD_HAVE_FEE = "In given Standard in some Standard has already fee added",
|
|
288
|
+
ALL_DUPLICATE = "All school fees already exist. No new records created.",
|
|
289
|
+
STD_ID_IS_REQUIRED = "Standard id is required",
|
|
290
|
+
USER_NOT_ACCEPTED = "Given Was nor accepted for given data",
|
|
291
|
+
USER_HAS_NOT_SERVICE_ACTIVE = "User Has Not Active service"
|
|
292
|
+
}
|
|
293
|
+
export declare enum FEESCOLLECTION_ERROR_MESSAGES {
|
|
294
|
+
CREATE_FAIL = "Unable to save feesCollection data!",
|
|
295
|
+
GET_FAIL = "Unable to retrieve feesCollection data!",
|
|
296
|
+
UPDATE_FAIL = "Unable to update feesCollection data!",
|
|
297
|
+
DELETE_FAIL = "Unable to delete feesCollection data!",
|
|
298
|
+
NOT_FOUND = "Unable to find feesCollection!",
|
|
299
|
+
FEESCOLLECTION_EXITS = "The institute has already created a fee or sent a request to the user.",
|
|
300
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for feesCollection data",
|
|
301
|
+
PAID_AMOUNT_IS_MORE = "The amount you paid is more than required.",
|
|
302
|
+
FEE_PAID = "Your fee is already paid and cannot be updated.",
|
|
303
|
+
FEE_PAID_BY_CHQUE = "When paymentType is cheque, both chequeNo and bankName are required.",
|
|
304
|
+
FEE_PAID_BY_UPI = "When paymentType is upi, upiId is required.",
|
|
305
|
+
DUPLICATE = "fee collection exits",
|
|
306
|
+
PAYMENT_TYPE_REQUIRED = "Payment type is required.",
|
|
307
|
+
SUBJECT_IS_WRONG = "Subject is not valid"
|
|
308
|
+
}
|
|
309
|
+
export declare enum FEEREMINDER_ERROR_MESSAGES {
|
|
310
|
+
CREATE_FAIL = "Unable to save feeReminder data!",
|
|
311
|
+
GET_FAIL = "Unable to retrieve feeReminder data!",
|
|
312
|
+
UPDATE_FAIL = "Unable to update feeReminder data!",
|
|
313
|
+
DELETE_FAIL = "Unable to delete feeReminder data!",
|
|
314
|
+
NOT_FOUND = "Unable to find feeReminder!",
|
|
315
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for feeReminder data",
|
|
316
|
+
SUBJECT_INVALID = "Subject not found in the batch, or the user is not enrolled in the subject.",
|
|
317
|
+
FEE_COLLECTION_NOT_FOUND = "FeeCollection not found for user",
|
|
318
|
+
USER_NOT_IN_BATCH = "user not in given batch",
|
|
319
|
+
INVALID_INPUT = "Input is invalid"
|
|
320
|
+
}
|
|
321
|
+
export declare enum FEE_REMINDER_SETTING_ERROR_MESSAGES {
|
|
322
|
+
CREATE_FAIL = "Unable to save feeReminder setting data!",
|
|
323
|
+
GET_FAIL = "Unable to retrieve feeReminder setting data!",
|
|
324
|
+
UPDATE_FAIL = "Unable to update feeReminder setting data!",
|
|
325
|
+
DELETE_FAIL = "Unable to delete feeReminder setting data!",
|
|
326
|
+
NOT_FOUND = "Unable to find feeReminder setting!",
|
|
327
|
+
NOT_FOUND_TYPE = "Unable to find feeReminder setting type!",
|
|
328
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for feeReminder setting data",
|
|
329
|
+
ACTIVE_REMINDER_LIMIT = "already one template is Active ",
|
|
330
|
+
DEFAULT_REMINDER_LIMIT = "already one template is Default ",
|
|
331
|
+
DEFAULT_NOT_CHANGE = "Default template can not be changed",
|
|
332
|
+
DEFAULT_NOT_DELETE = "Default template can not be deleted"
|
|
333
|
+
}
|
|
334
|
+
export declare enum FEE_REMINDER_ERROR_MESSAGES {
|
|
335
|
+
CREATE_FAIL = "Unable to save feeReminder type data!",
|
|
336
|
+
GET_FAIL = "Unable to retrieve feeReminder type data!",
|
|
337
|
+
UPDATE_FAIL = "Unable to update feeReminder type data!",
|
|
338
|
+
DELETE_FAIL = "Unable to delete feeReminder type data!",
|
|
339
|
+
NOT_FOUND = "Unable to find feeReminder type!",
|
|
340
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for feeReminder data",
|
|
341
|
+
ALREADY_EXISTS = "Fee reminder type already exists! Please change the data."
|
|
342
|
+
}
|
|
343
|
+
export declare enum USER_HAS_OFFER_ERROR_MESSAGES {
|
|
344
|
+
CREATE_FAIL = "Unable to save user offer data!",
|
|
345
|
+
GET_FAIL = "Unable to retrieve user offer data!",
|
|
346
|
+
UPDATE_FAIL = "Unable to update user offer data!",
|
|
347
|
+
DELETE_FAIL = "Unable to delete user offer data!",
|
|
348
|
+
NOT_FOUND = "Unable to find user offer!",
|
|
349
|
+
OFFER_EXISTS = "The offer has already been used by the user.",
|
|
350
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for user offer data",
|
|
351
|
+
FEE_COLLECTION_NOT_FOUND = "Fee collection not found for the user, or the user has already paid the fee.",
|
|
352
|
+
OFFER_NOT_FOUND = "Offer Not Found for user offer data",
|
|
353
|
+
USER_LIMIT_REACHED = "The user cannot apply, offer limit has already reached!",
|
|
354
|
+
NOT_USE_OFFER = "User cannot use this offer as the minimum amount is not met."
|
|
355
|
+
}
|
|
356
|
+
export declare enum USER_HAS_ROLL_NUMBER_ERROR_MESSAGES {
|
|
357
|
+
CREATE_FAIL = "Unable to save user offer data!",
|
|
358
|
+
GET_FAIL = "Unable to retrieve user offer data!",
|
|
359
|
+
UPDATE_FAIL = "Unable to update user offer data!",
|
|
360
|
+
DELETE_FAIL = "Unable to delete user offer data!",
|
|
361
|
+
NOT_FOUND = "Unable to find user offer!",
|
|
362
|
+
BATCH_NOT_FOUND = "batch not found",
|
|
363
|
+
BATCH_IS_EMPTY = "batch was empty",
|
|
364
|
+
ROLL_NUMBER_ALREADY_EXISTS = "rollNumber Exits Plz verify you Data",
|
|
365
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for user offer data",
|
|
366
|
+
USER_NOT_IN_BATCH = "user not in batch"
|
|
367
|
+
}
|
|
368
|
+
export declare enum HOLIDAY_ERROR_MESSAGES {
|
|
369
|
+
CREATE_FAIL = "Unable to save holiday data!",
|
|
370
|
+
GET_FAIL = "Unable to retrieve holiday data!",
|
|
371
|
+
UPDATE_FAIL = "Unable to update holiday data!",
|
|
372
|
+
DELETE_FAIL = "Unable to delete holiday data!",
|
|
373
|
+
NOT_FOUND = "Unable to find holiday!",
|
|
374
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for holiday data",
|
|
375
|
+
TYPE_MANAGEMENT_NOT_FOUND = "Type management not found for holiday data",
|
|
376
|
+
INSTITUTE_ID_BATCH_REQUIRED = "Institute ID and batch are required "
|
|
377
|
+
}
|
|
378
|
+
export declare enum EVENT_ERROR_MESSAGES {
|
|
379
|
+
CREATE_FAIL = "Unable to save event data!",
|
|
380
|
+
GET_FAIL = "Unable to retrieve event data!",
|
|
381
|
+
UPDATE_FAIL = "Unable to update event data!",
|
|
382
|
+
DELETE_FAIL = "Unable to delete event data!",
|
|
383
|
+
NOT_FOUND = "Unable to find event!",
|
|
384
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for event data",
|
|
385
|
+
INSTITUTE_ID_SUBJECT_BATCH_REQUIRED = "Institute ID, subject, and batch are required for non-INSTITUTE or non-GLOBAL types."
|
|
386
|
+
}
|
|
387
|
+
export declare enum ACADEMIC_CALENDAR_ERROR_MESSAGES {
|
|
388
|
+
CREATE_FAIL = "Failed to create academic calendar data!",
|
|
389
|
+
GET_FAIL = "Failed to retrieve academic calendar data!",
|
|
390
|
+
UPDATE_FAIL = "Failed to update academic calendar data!",
|
|
391
|
+
DELETE_FAIL = "Failed to delete academic calendar data!",
|
|
392
|
+
NOT_FOUND = "Academic calendar data not found!",
|
|
393
|
+
CALENDAR_NOT_END_FOR_INSTITUTE_AND_BATCH = "The current calendar for institute and batch has not ended yet.",
|
|
394
|
+
CALENDAR_EXISTS_FOR_INSTITUTE_AND_BATCH = "The current calendar for the institute and batch has not ended yet.",
|
|
395
|
+
CALENDAR_NOT_END_FOR_INSTITUTE = "The current calendar for institute has not ended yet.",
|
|
396
|
+
CALENDAR_EXISTS_FOR_INSTITUTE = "A calendar already exists for the institute with overlapping dates.",
|
|
397
|
+
CALENDAR_NO_EXISTS_FOR_INSTITUTE = "No calendar exists for the institute."
|
|
398
|
+
}
|
|
399
|
+
export declare enum BATCH_ERROR_MESSAGES {
|
|
400
|
+
CREATE_FAIL = "Unable to save batch data!",
|
|
401
|
+
GET_FAIL = "Unable to retrieve batch data!",
|
|
402
|
+
INVALID_SELECTED = "Invalid selected batches!",
|
|
403
|
+
UPDATE_FAIL = "Unable to update batch data!",
|
|
404
|
+
DELETE_FAIL = "Unable to delete batch data!",
|
|
405
|
+
NOT_FOUND = "Unable to find batch!",
|
|
406
|
+
CAPACITY_REACHED_MAXIMUM = "batch already reached maximum capacity!",
|
|
407
|
+
NAME_IS_ALREADY_NAME = "Name already exists. Try a different one.",
|
|
408
|
+
ALREADY_ASSIGN = "batch already assigned to",
|
|
409
|
+
CAN_NOT_UN_ASSIGN = "batch can not unassign because of still its lecture pending",
|
|
410
|
+
SUBJET_NOT_EXIST_IN_BATCH = "Subjects that you try to assign are not exist in batch",
|
|
411
|
+
SUBJECT_NOT_EXIST_IN_USER_PROFILE = "Subjects that you try to assign are not exist in user profile",
|
|
412
|
+
NOT_SUBJECTS_UPADTED_DUE_TO_BATCH_ALREADY_ASSIGN = "Batch subjects Cant not updated because batch already assign",
|
|
413
|
+
BATCH_HAS_NO_STUDENT = "Batch has no students",
|
|
414
|
+
INSTITUTED_BATCHES_REQUIRED = "instituted id and batches in batchId required",
|
|
415
|
+
BATCH_UNASSIGN_FAIL = "batch unassigned failed!",
|
|
416
|
+
SHIFT_SLOT_DATA_NOT_LINK = "Given shift and slot data not link each other",
|
|
417
|
+
BATCH_DATE_NOT_BEETWEEN_ACADEMIC_CALENDER = "Batch date range should be between academic calendar date!"
|
|
418
|
+
}
|
|
419
|
+
export declare enum CLASSROOM_ERROR_MESSAGES {
|
|
420
|
+
CREATE_FAIL = "Unable to save classRoom data!",
|
|
421
|
+
GET_FAIL = "Unable to retrieve classRoom data!",
|
|
422
|
+
INVALID_SELECTED = "Invalid selected classrooms!",
|
|
423
|
+
UPDATE_FAIL = "Unable to update classRoom data!",
|
|
424
|
+
DELETE_FAIL = "Unable to delete classRoom data!",
|
|
425
|
+
NOT_FOUND = "Unable to find classRoom!",
|
|
426
|
+
ALREADY_EXISTS = "classRoom already exists on this floor"
|
|
427
|
+
}
|
|
428
|
+
export declare enum TYPE_MANAGEMENT_ERROR_MESSAGES {
|
|
429
|
+
CREATE_FAIL = "Unable to save type data!",
|
|
430
|
+
GET_FAIL = "Unable to retrieve type data!",
|
|
431
|
+
UPDATE_FAIL = "Unable to update type data!",
|
|
432
|
+
DELETE_FAIL = "Unable to delete type data!",
|
|
433
|
+
NOT_FOUND = "Unable to find type!",
|
|
434
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for type data",
|
|
435
|
+
TYPE_ALREADY_EXISTS = "The type already exists."
|
|
436
|
+
}
|
|
437
|
+
export declare enum ROLE_ERROR_MESSAGES {
|
|
438
|
+
CREATE_FAIL = "Unable to save role data!",
|
|
439
|
+
DUPLICATE_ROLE_NAME = "Role already exist!",
|
|
440
|
+
GET_FAIL = "Unable to retrieve role data!",
|
|
441
|
+
UPDATE_FAIL = "Unable to update role data!",
|
|
442
|
+
DELETE_FAIL = "Unable to delete role data!",
|
|
443
|
+
NOT_FOUND = "Unable to find role data!",
|
|
444
|
+
ROLE_ALREADY_GIVEN = "role hve user already"
|
|
445
|
+
}
|
|
446
|
+
export declare enum MODULE_ERROR_MESSAGES {
|
|
447
|
+
CREATE_FAIL = "Unable to save module data!",
|
|
448
|
+
DUPLICATE_MODULE_NAME = "Module name already exist!",
|
|
449
|
+
GET_FAIL = "Unable to retrieve module data!",
|
|
450
|
+
UPDATE_FAIL = "Unable to update module data!",
|
|
451
|
+
DELETE_FAIL = "Unable to delete module data!",
|
|
452
|
+
NOT_FOUND = "Unable to find module data!"
|
|
453
|
+
}
|
|
454
|
+
export declare enum INSTITUTE_ERROR_MESSAGES {
|
|
455
|
+
CREATE_FAIL = "Unable to save institute data!",
|
|
456
|
+
DUPLICATE_INSTITUTE_NAME_OR_EMAIL = "Institute name or email already exist!",
|
|
457
|
+
GET_FAIL = "Unable to retrieve institute data!",
|
|
458
|
+
UPDATE_FAIL = "Unable to update institute data!",
|
|
459
|
+
DELETE_FAIL = "Unable to delete institute data!",
|
|
460
|
+
NOT_FOUND = "Unable to find institute data!",
|
|
461
|
+
INSTITUTE_ID = "institute id required"
|
|
462
|
+
}
|
|
463
|
+
export declare enum INSTITUTE_ENTITY_TYPE_ERROR_MESSAGES {
|
|
464
|
+
CREATE_FAIL = "Unable to save institute entity type data!",
|
|
465
|
+
DUPLICATE_NAME = "Institute entity type title already exist!",
|
|
466
|
+
GET_FAIL = "Unable to retrieve institute entity type data!",
|
|
467
|
+
UPDATE_FAIL = "Unable to update institute entity type data!",
|
|
468
|
+
DELETE_FAIL = "Unable to delete institute entity type data!",
|
|
469
|
+
NOT_FOUND = "Unable to find institute entity type!",
|
|
470
|
+
FILE_MISISIN_VALIDATION = "File missing in svgUrl field",
|
|
471
|
+
CAN_NOT_DELETE = "Given data for Institute entity already exist can not delete!"
|
|
472
|
+
}
|
|
473
|
+
export declare enum INSTITUTE_ENTITY_ERROR_MESSAGES {
|
|
474
|
+
CREATE_FAIL = "Unable to save institute entity data!",
|
|
475
|
+
DUPLICATE_NAME = "Institute entity title already exist!",
|
|
476
|
+
INVALID_TYPE = "Invalid institute entity!",
|
|
477
|
+
INVALID_ENTITY_TYPE_STEP = "Invalid institute entity type steps!",
|
|
478
|
+
GET_FAIL = "Unable to retrieve institute entity data!",
|
|
479
|
+
UPDATE_FAIL = "Unable to update institute entity data!",
|
|
480
|
+
DELETE_FAIL = "Unable to delete institute entity data!",
|
|
481
|
+
NOT_FOUND = "Unable to find institute entity!",
|
|
482
|
+
FILE_MISISIN_VALIDATION = "File missing in svgUrl field",
|
|
483
|
+
NOT_FOUND_JOINING_DATE = "Joining data is required",
|
|
484
|
+
DELETE_FAIL_META_EXIST = "Unable to delete institute entity data due to linked with user or institute!",
|
|
485
|
+
INVALID_SEQUENCE_NUMBER = "Invalid sequence number provided for institute entity.",
|
|
486
|
+
UPDATE_SEQUENCE_NUMBER = "Unable to update Sequence number for institute entity data.",
|
|
487
|
+
DUPLICATE_SEQUENCE_NUMBER = "Duplicate sequence number found for institute entity.",
|
|
488
|
+
PAYLOAD_LENGTH_SEQUENCE_NUMBER = "Payload length must equal max sequenceNumber!"
|
|
489
|
+
}
|
|
490
|
+
export declare enum USER_INSTITUTE_META_ERROR_MESSAGES {
|
|
491
|
+
CREATE_FAIL = "Unable to save user institute meta data!",
|
|
492
|
+
GET_FAIL = "Unable to retrieve user institute meta data!",
|
|
493
|
+
UPDATE_FAIL = "Unable to update user institute meta data!",
|
|
494
|
+
DELETE_FAIL = "Unable to delete user institute meta data!",
|
|
495
|
+
NOT_FOUND = "Unable to find user institute meta data!",
|
|
496
|
+
PRIMARY_SLOT_FOND = "Only one slot can be primary.",
|
|
497
|
+
DUPLICATE_RECORD = "The user request has already been accepted or is currently pending.",
|
|
498
|
+
WRONG_STATUS = "The provided status is invalid or not allowed",
|
|
499
|
+
USER_NOT_SEND_REQUEST = "user can not send request its limit reached",
|
|
500
|
+
IS_PRINCIPAL_EXITS = "for this instituted principal already exits ",
|
|
501
|
+
STD_NOT_FOUND = "Standard not found for instituted",
|
|
502
|
+
GR_NUMBER_EXITS = "Cannot update Gr Number: Gr Number already exits that you want given",
|
|
503
|
+
CAN_NOT_UPDATE_USER_FOUND = "Institute update failed: removed data is linked to an existing user",
|
|
504
|
+
CAN_NOT_UPDATE_BATCH_FOUND = "Cannot update institute data: dependency found between removed data and assigned batch",
|
|
505
|
+
CAN_NOT_UPDATE_LECTURE_FOUND = "Institute update failed: removed data is linked to an existing lectures",
|
|
506
|
+
USER_ALREADY_FIL_FROM = "User already filUp form",
|
|
507
|
+
CAN_NOT_UPDATE_ENTITY_FOUND = "Institute update failed: removed data is linked to an existing group"
|
|
508
|
+
}
|
|
509
|
+
export declare enum PARENTS_ERROR_MESSAGES {
|
|
510
|
+
CREATE_FAIL = "Unable to save parents data!",
|
|
511
|
+
GET_FAIL = "Unable to retrieve parents data!",
|
|
512
|
+
UPDATE_FAIL = "Unable to update parents data!",
|
|
513
|
+
DELETE_FAIL = "Unable to delete parents data!",
|
|
514
|
+
NOT_FOUND = "Unable to find parents data!",
|
|
515
|
+
NOT_ALLOWED_TRANSFER_PARENT = "Unable to transfer primary parent!",
|
|
516
|
+
INVALID_SECURITY_CODE = "Invalid security code!",
|
|
517
|
+
STUDENT_CANNOT_BE_PARENT = "Student cannot be a parent!"
|
|
518
|
+
}
|
|
519
|
+
export declare enum ANNOUCEMENT_ERROR_MESSAGES {
|
|
520
|
+
CREATE_FAIL = "Unable to save announcement data!",
|
|
521
|
+
GET_FAIL = "Unable to retrieve announcement data!",
|
|
522
|
+
UPDATE_FAIL = "Unable to update announcement data!",
|
|
523
|
+
DELETE_FAIL = "Unable to delete announcement data!",
|
|
524
|
+
NOT_FOUND = "Unable to find announcement data!",
|
|
525
|
+
INVALID_SUBJECTS = "Invalid subjects!",
|
|
526
|
+
INVALID_BATCHES = "Invalid batches!",
|
|
527
|
+
INVALID_USERS = "Invalid users!"
|
|
528
|
+
}
|
|
529
|
+
export declare enum EXAM_ERROR_MESSAGES {
|
|
530
|
+
CREATE_FAIL = "Unable to save exam data!",
|
|
531
|
+
GET_FAIL = "Unable to retrieve exam data!",
|
|
532
|
+
UPDATE_FAIL = "Unable to update exam data!",
|
|
533
|
+
DELETE_FAIL = "Unable to delete exam data!",
|
|
534
|
+
NOT_FOUND = "Unable to find exam data!",
|
|
535
|
+
DUPLICATE = "Exam already exist!",
|
|
536
|
+
INVALID_STANDARD = "Exam has invalid standard!",
|
|
537
|
+
INVALID_BATCHES = "Exam has invalid batches!",
|
|
538
|
+
INVALID_EXAM_DATE = "Exam has invalid date!"
|
|
539
|
+
}
|
|
540
|
+
export declare enum EXAM_HAS_ANSWER_SHEET_ERROR_MESSAGES {
|
|
541
|
+
CREATE_FAIL = "Unable to save exam answer sheet data!",
|
|
542
|
+
GET_FAIL = "Unable to retrieve exam answer sheet data!",
|
|
543
|
+
UPDATE_FAIL = "Unable to update exam answer sheet data!",
|
|
544
|
+
DELETE_FAIL = "Unable to delete exam answer sheet data!",
|
|
545
|
+
NOT_FOUND = "Unable to find exam answer sheet data!",
|
|
546
|
+
EXAM_ALREADY_HAS_ANSWER_SHEET = "Exam already created answerSheet!",
|
|
547
|
+
NOT_FOUND_MASTER_ANSWER_SHEET = "Master answer sheet not found for exam!",
|
|
548
|
+
EXAM_STARTED_ON_OTHER_DEVICE = "Exam already started on other device!"
|
|
549
|
+
}
|
|
550
|
+
export declare enum FILE_STORAGE_ERROR_MESSAGES {
|
|
551
|
+
CREATE_FAIL = "Unable to save file data!",
|
|
552
|
+
GET_FAIL = "Unable to retrieve file data!",
|
|
553
|
+
UPDATE_FAIL = "Unable to update file data!",
|
|
554
|
+
DELETE_FAIL = "Unable to delete file data!",
|
|
555
|
+
NOT_FOUND = "Unable to find file data!"
|
|
556
|
+
}
|
|
557
|
+
export declare enum ATTENDANCE_ERROR_MESSAGES {
|
|
558
|
+
CREATE_FAIL = "Unable to save attendance data!",
|
|
559
|
+
DUPLICATE = "attendance already exist for given date!",
|
|
560
|
+
UPDATE_FAIL = "Unable to update attendance data!",
|
|
561
|
+
DELETE_FAIL = "Unable to delete attendance data!",
|
|
562
|
+
NOT_FOUND = "Unable to find attendance data!",
|
|
563
|
+
USER_BATCH_NOT_FOUND = "Unable to find batch data!",
|
|
564
|
+
USER_HAS_BATCH_NOT_FOUND = "Unable to find user has batch data!",
|
|
565
|
+
FULL_DAY_TIME_NOT_MATCH = "Attendance full day time not matched",
|
|
566
|
+
BATCH_TIME_NOT_MATCH = "Attendance batch time not matched",
|
|
567
|
+
LECTURE_DAY_TIME_NOT_MATCH = "Attendance lecture time not matched",
|
|
568
|
+
BATCH_HAS_NO_LECTURE = "Batch has no lecture for attendance date"
|
|
569
|
+
}
|
|
570
|
+
export declare enum USER_SCHOOL_METADATA_ERROR_MESSAGES {
|
|
571
|
+
CREATE_FAIL = "Unable to save user school metadata!",
|
|
572
|
+
DUPLICATE = "User school metadata already exists for the given data!",
|
|
573
|
+
UPDATE_FAIL = "Unable to update user school metadata!",
|
|
574
|
+
DELETE_FAIL = "Unable to delete user school metadata!",
|
|
575
|
+
NOT_FOUND = "Unable to find user school metadata!",
|
|
576
|
+
INVALID_DATA = "Invalid data provided for user school metadata!"
|
|
577
|
+
}
|
|
578
|
+
export declare enum WORKING_DAYS_ERROR_MESSAGES {
|
|
579
|
+
CREATE_FAIL = "Unable to save working day data!",
|
|
580
|
+
DUPLICATE = "Working day name already exist!",
|
|
581
|
+
GET_FAIL = "Unable to retrieve working day data!",
|
|
582
|
+
UPDATE_FAIL = "Unable to update working day data!",
|
|
583
|
+
DELETE_FAIL = "Unable to delete working day data!",
|
|
584
|
+
NOT_FOUND = "Unable to find working day data!"
|
|
585
|
+
}
|
|
586
|
+
export declare enum LECTURE_ERROR_MESSAGES {
|
|
587
|
+
CREATE_FAIL = "Unable to save lecture data!",
|
|
588
|
+
DUPLICATE = "Lecture already exist!",
|
|
589
|
+
GET_FAIL = "Unable to retrieve lecture data!",
|
|
590
|
+
UPDATE_FAIL = "Unable to update lecture data!",
|
|
591
|
+
DELETE_FAIL = "Unable to delete lecture data!",
|
|
592
|
+
NOT_FOUND = "Unable to find lecture data!",
|
|
593
|
+
INVALID_LECTURE_TIME = "Invalid lecture time!",
|
|
594
|
+
BATCH_OCCUPIED = "Batch is already occupied at this time slot!",
|
|
595
|
+
CLASSROOM_OCCUPIED = "Classroom is already occupied at this time slot!",
|
|
596
|
+
TEACHER_OCCUPIED = "Teacher is already occupied at this time slot!",
|
|
597
|
+
INVALID_SLOT_OR_SHIFT = "Invalid shift or slot id!",
|
|
598
|
+
YOU_CAN_NOT_CHECKED_IN = "You can checked in or checked out in your assigned lectures"
|
|
599
|
+
}
|
|
600
|
+
export declare enum TRIP_ERROR_MESSAGES {
|
|
601
|
+
CREATE_FAIL = "Unable to save trip data!",
|
|
602
|
+
DUPLICATE = "Trip already exist!",
|
|
603
|
+
GET_FAIL = "Unable to retrieve trip data!",
|
|
604
|
+
UPDATE_FAIL = "Unable to update trip data!",
|
|
605
|
+
DELETE_FAIL = "Unable to delete trip data!",
|
|
606
|
+
NOT_FOUND = "Unable to find trip data!",
|
|
607
|
+
INVALID_LECTURE_TIME = "Invalid trip time!"
|
|
608
|
+
}
|
|
609
|
+
export declare enum SLOT_ERROR_MESSAGES {
|
|
610
|
+
CREATE_FAIL = "Unable to save slot data!",
|
|
611
|
+
DUPLICATE = "Slot already exist!",
|
|
612
|
+
GET_FAIL = "Unable to retrieve slot data!",
|
|
613
|
+
UPDATE_FAIL = "Unable to update slot data!",
|
|
614
|
+
DELETE_FAIL = "Unable to delete slot data!",
|
|
615
|
+
NOT_FOUND = "Unable to find slot data!",
|
|
616
|
+
SLOT_LINKED = "Slot is linked, cannot be deleted!",
|
|
617
|
+
INVALID_LECTURE_TIME = "Invalid slot time!"
|
|
618
|
+
}
|
|
619
|
+
export declare enum TO_DO_ERROR_MESSAGES {
|
|
620
|
+
CREATE_FAIL = "Unable to save to-do data!",
|
|
621
|
+
DUPLICATE = "To-do already exist!",
|
|
622
|
+
GET_FAIL = "Unable to retrieve to-do data!",
|
|
623
|
+
UPDATE_FAIL = "Unable to update to-do data!",
|
|
624
|
+
DELETE_FAIL = "Unable to delete to-do data!",
|
|
625
|
+
NOT_FOUND = "Unable to find to-do data!"
|
|
626
|
+
}
|
|
627
|
+
export declare enum COURSE_ERROR_MESSAGES {
|
|
628
|
+
CREATE_FAIL = "Unable to save course data!",
|
|
629
|
+
DUPLICATE = "Course already exist!",
|
|
630
|
+
GET_FAIL = "Unable to retrieve course data!",
|
|
631
|
+
UPDATE_FAIL = "Unable to update course data!",
|
|
632
|
+
DELETE_FAIL = "Unable to delete course data!",
|
|
633
|
+
NOT_FOUND = "Unable to find course data!"
|
|
634
|
+
}
|
|
635
|
+
export declare enum USER_HAS_COURSE_ERROR_MESSAGES {
|
|
636
|
+
CREATE_FAIL = "Unable to save user course data!",
|
|
637
|
+
DUPLICATE = "User already has this course!",
|
|
638
|
+
GET_FAIL = "Unable to retrieve user course data!",
|
|
639
|
+
UPDATE_FAIL = "Unable to update user course data!",
|
|
640
|
+
DELETE_FAIL = "Unable to delete user course data!",
|
|
641
|
+
NOT_FOUND = "Unable to find user course data!"
|
|
642
|
+
}
|
|
643
|
+
export declare enum GREETING_ERROR_MESSAGES {
|
|
644
|
+
CREATE_FAIL = "Unable to save greeting data!",
|
|
645
|
+
DUPLICATE = "Greeting already exist!",
|
|
646
|
+
GET_FAIL = "Unable to retrieve greeting data!",
|
|
647
|
+
UPDATE_FAIL = "Unable to update greeting data!",
|
|
648
|
+
DELETE_FAIL = "Unable to delete greeting data!",
|
|
649
|
+
NOT_FOUND = "Unable to find greeting data!",
|
|
650
|
+
CAN_NOT_DELETE = "Unable to delete greeting data because it is set as the default greeting."
|
|
651
|
+
}
|
|
652
|
+
export declare enum PDC_CHEQUE_ERROR_MESSAGES {
|
|
653
|
+
CREATE_FAIL = "Unable to save pdc cheque data!",
|
|
654
|
+
DUPLICATE = "Pdc cheque already exist!",
|
|
655
|
+
GET_FAIL = "Unable to retrieve pdc cheque data!",
|
|
656
|
+
UPDATE_FAIL = "Unable to update pdc cheque data!",
|
|
657
|
+
DELETE_FAIL = "Unable to delete pdc cheque data!",
|
|
658
|
+
NOT_FOUND = "Unable to find pdc cheque data!",
|
|
659
|
+
CAN_NOT_UPDATE = "Unable to update details due to cheque is clear",
|
|
660
|
+
CAN_NOT_UPDATE_BOUNCED = "Unable to update details due to cheque is bounced",
|
|
661
|
+
CAN_NOT_CLEAR_UNLESS_DEPOSITED = "You can not clear cheque unless it is deposited to bank",
|
|
662
|
+
CAN_NOT_BOUNCE_UNLESS_DEPOSITED = "You can not bounce cheque unless it is deposited to bank"
|
|
663
|
+
}
|
|
664
|
+
export declare enum VIDEO_ANALYST_ERROR_MESSAGES {
|
|
665
|
+
CREATE_FAIL = "Unable to save video analyst data!",
|
|
666
|
+
DUPLICATE = "Video analyst already exist!",
|
|
667
|
+
GET_FAIL = "Unable to retrieve video analyst data!",
|
|
668
|
+
UPDATE_FAIL = "Unable to update video analyst data!",
|
|
669
|
+
DELETE_FAIL = "Unable to delete video analyst data!",
|
|
670
|
+
NOT_FOUND = "Unable to find video analyst data!"
|
|
671
|
+
}
|
|
672
|
+
export declare enum BLOG_ERROR_MESSAGES {
|
|
673
|
+
CREATE_FAIL = "Unable to save blog data!",
|
|
674
|
+
DUPLICATE = "Blog already exist!",
|
|
675
|
+
GET_FAIL = "Unable to retrieve blog data!",
|
|
676
|
+
UPDATE_FAIL = "Unable to update blog data!",
|
|
677
|
+
DELETE_FAIL = "Unable to delete blog data!",
|
|
678
|
+
NOT_FOUND = "Unable to find blog data!",
|
|
679
|
+
INVALID_LINK = "Invalid Link Which you Try to open"
|
|
680
|
+
}
|
|
681
|
+
export declare enum DRIVER_ERROR_MESSAGES {
|
|
682
|
+
CREATE_FAIL = "Unable to save driver data!",
|
|
683
|
+
DUPLICATE = "Driver already exist!",
|
|
684
|
+
GET_FAIL = "Unable to retrieve driver data!",
|
|
685
|
+
UPDATE_FAIL = "Unable to update driver data!",
|
|
686
|
+
DELETE_FAIL = "Unable to delete driver data!",
|
|
687
|
+
NOT_FOUND = "Unable to find driver data!"
|
|
688
|
+
}
|
|
689
|
+
export declare enum TESTIMONIAL_ERROR_MESSAGES {
|
|
690
|
+
CREATE_FAIL = "Unable to save testimonial data!",
|
|
691
|
+
DUPLICATE = "Testimonial already exist!",
|
|
692
|
+
GET_FAIL = "Unable to retrieve testimonial data!",
|
|
693
|
+
UPDATE_FAIL = "Unable to update testimonial data!",
|
|
694
|
+
DELETE_FAIL = "Unable to delete testimonial data!",
|
|
695
|
+
NOT_FOUND = "Unable to find testimonial data!",
|
|
696
|
+
INVALID_LECTURE_TIME = "Invalid testimonial time!"
|
|
697
|
+
}
|
|
698
|
+
export declare enum SUBJECT_INDEX_ERROR_MESSAGES {
|
|
699
|
+
CREATE_FAIL = "Unable to save subjet index data!",
|
|
700
|
+
DUPLICATE = "Subjet index already exist!",
|
|
701
|
+
GET_FAIL = "Unable to retrieve subjet index data!",
|
|
702
|
+
UPDATE_FAIL = "Unable to update subjet index data!",
|
|
703
|
+
DELETE_FAIL = "Unable to delete subjet index data!",
|
|
704
|
+
NOT_FOUND = "Unable to find subjet index data!",
|
|
705
|
+
INVALID_CHAPTER_INDEX = "Chapter index has invalid data for given subject index!",
|
|
706
|
+
INVALID_CHAPTER_TOPIC_INDEX = "Chapter topic index has invalid data for given subject index!",
|
|
707
|
+
INVALID_CHAPTER_SUB_TOPIC_INDEX = "Chapter sub topic index has invalid data for given subject index!",
|
|
708
|
+
INVALID_CHAPTER_INDEX_FILE = "Chapter index has invalid file data for given subject index!",
|
|
709
|
+
CAN_NOT_ASSIGN_TO_USER = "Chapter index can not allow to user!"
|
|
710
|
+
}
|
|
711
|
+
export declare enum USER_PAYOUT_ERROR_MESSAGES {
|
|
712
|
+
CREATE_FAIL = "Unable to save user payout data!",
|
|
713
|
+
DUPLICATE = "User payout already exist!",
|
|
714
|
+
GET_FAIL = "Unable to retrieve user payout data!",
|
|
715
|
+
UPDATE_FAIL = "Unable to update user payout data!",
|
|
716
|
+
DELETE_FAIL = "Unable to delete user payout data!",
|
|
717
|
+
NOT_FOUND = "Unable to find user payout data!"
|
|
718
|
+
}
|
|
719
|
+
export declare enum USER_PAYOUT_HISTORY_ERROR_MESSAGES {
|
|
720
|
+
CREATE_FAIL = "Unable to save user payout history data!",
|
|
721
|
+
DUPLICATE = "User payout history already exist!",
|
|
722
|
+
GET_FAIL = "Unable to retrieve user payout history data!",
|
|
723
|
+
UPDATE_FAIL = "Unable to update user payout history data!",
|
|
724
|
+
DELETE_FAIL = "Unable to delete user payout history data!",
|
|
725
|
+
NOT_FOUND = "Unable to find user payout history data!"
|
|
726
|
+
}
|
|
727
|
+
export declare enum EXAM_GROUP_ERROR_MESSAGES {
|
|
728
|
+
CREATE_FAIL = "Unable to save exams data!",
|
|
729
|
+
DUPLICATE = "exams already exist!",
|
|
730
|
+
GET_FAIL = "Unable to retrieve exams data!",
|
|
731
|
+
UPDATE_FAIL = "Unable to update exams data!",
|
|
732
|
+
DELETE_FAIL = "Unable to delete exams data!",
|
|
733
|
+
NOT_FOUND = "Unable to find exams data!",
|
|
734
|
+
ALL_SUBJECT_EXAM_NOT_CREATED = "All subjects exam not created!",
|
|
735
|
+
ALL_SUBJECT_EXAM_MARKS_NOT_ADDED = "All subjects exam marks not added!",
|
|
736
|
+
INVALID_HOLIDAY = "Invalid holiday added!"
|
|
737
|
+
}
|
|
738
|
+
export declare enum TASK_MANAGEMENT_ERROR_MESSAGES {
|
|
739
|
+
CREATE_FAIL = "Unable to save user task data!",
|
|
740
|
+
DUPLICATE = "User task already exist!",
|
|
741
|
+
GET_FAIL = "Unable to retrieve task data!",
|
|
742
|
+
UPDATE_FAIL = "Unable to update task data!",
|
|
743
|
+
DELETE_FAIL = "Unable to delete task data!",
|
|
744
|
+
NOT_FOUND = "Unable to find task data!"
|
|
745
|
+
}
|
|
746
|
+
export declare enum BATCH_SUBJECT_BOOK_ASSESSMENT_ERROR_MESSAGES {
|
|
747
|
+
CREATE_FAIL = "Unable to save assessment book data!",
|
|
748
|
+
GET_FAIL = "Unable to retrieve assessment book data!",
|
|
749
|
+
UPDATE_FAIL = "Unable to update assessment book data!",
|
|
750
|
+
DELETE_FAIL = "Unable to delete assessment book data!",
|
|
751
|
+
NOT_FOUND = "Unable to find assessment book!"
|
|
752
|
+
}
|
|
753
|
+
export declare enum USER_BOOK_ASSESSMENT_ERROR_MESSAGES {
|
|
754
|
+
CREATE_FAIL = "Unable to save user book assessment book data!",
|
|
755
|
+
GET_FAIL = "Unable to retrieve user book assessment book data!",
|
|
756
|
+
UPDATE_FAIL = "Unable to update user book assessment book data!",
|
|
757
|
+
DELETE_FAIL = "Unable to delete user book assessment book data!",
|
|
758
|
+
NOT_FOUND = "Unable to find user book assessment book!"
|
|
759
|
+
}
|
|
760
|
+
export declare enum BATCH_SUBJECT_PROJECT_ASSESSMENT_ERROR_MESSAGES {
|
|
761
|
+
CREATE_FAIL = "Unable to save project assessment data!",
|
|
762
|
+
GET_FAIL = "Unable to retrieve project assessment data!",
|
|
763
|
+
UPDATE_FAIL = "Unable to update project assessment data!",
|
|
764
|
+
DELETE_FAIL = "Unable to delete project assessment data!",
|
|
765
|
+
NOT_FOUND = "Unable to find project assessment!"
|
|
766
|
+
}
|
|
767
|
+
export declare enum VEHICLE_ERROR_MESSAGES {
|
|
768
|
+
CREATE_FAIL = "Unable to save vehicle data!",
|
|
769
|
+
GET_FAIL = "Unable to retrieve vehicle data!",
|
|
770
|
+
UPDATE_FAIL = "Unable to update vehicle data!",
|
|
771
|
+
DELETE_FAIL = "Unable to delete vehicle data!",
|
|
772
|
+
NOT_FOUND = "Unable to find vehicle!"
|
|
773
|
+
}
|
|
774
|
+
export declare enum GENERATE_ID_CARD_ERROR_MESSAGES {
|
|
775
|
+
CREATE_FAIL = "Unable to save id card data!",
|
|
776
|
+
GET_FAIL = "Unable to retrieve id card data!",
|
|
777
|
+
UPDATE_FAIL = "Unable to update id card data!",
|
|
778
|
+
DELETE_FAIL = "Unable to delete id card data!",
|
|
779
|
+
NOT_FOUND = "Id card not found!"
|
|
780
|
+
}
|
|
781
|
+
export declare enum CONTACT_FEED_BACK_ERROR_MESSAGES {
|
|
782
|
+
CREATE_FAIL = "Unable to save contact feed back data!",
|
|
783
|
+
GET_FAIL = "Unable to retrieve contact feed back data!",
|
|
784
|
+
NOT_FOUND = "Unable to find contact feed back data!",
|
|
785
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for contact feed back data"
|
|
786
|
+
}
|
|
787
|
+
export declare enum PHOTO_GALLERY_ERROR_MESSAGES {
|
|
788
|
+
CREATE_FAIL = "Unable to save photo gallery data!",
|
|
789
|
+
DUPLICATE = "Photo gallery already exists with the same name!",
|
|
790
|
+
GET_ALL_FAIL = "Unable to retrieve all photo galleries data!",
|
|
791
|
+
GET_FAIL = "Unable to retrieve photo gallery data!",
|
|
792
|
+
UPDATE_FAIL = "Unable to update photo gallery data!",
|
|
793
|
+
DELETE_FAIL = "Unable to delete photo gallery data!",
|
|
794
|
+
NOT_FOUND = "Unable to find photo gallery!"
|
|
795
|
+
}
|
|
796
|
+
export declare enum NOTIFICATION_ERROR_MESSAGES {
|
|
797
|
+
CREATE_FAIL = "Unable to sen notification data!",
|
|
798
|
+
GET_FAIL = "Unable to retrieve notification data!",
|
|
799
|
+
UPDATE_FAIL = "Unable to update notification data!",
|
|
800
|
+
DELETE_FAIL = "Unable to delete notification data!",
|
|
801
|
+
NOT_FOUND = "Unable to find notification!"
|
|
802
|
+
}
|
|
803
|
+
export declare enum RULES_REGULATION_ERROR_MESSAGES {
|
|
804
|
+
CREATE_FAIL = "Unable to save Rule Regulation data!",
|
|
805
|
+
GET_FAIL = "Unable to retrieve Rule Regulation data!",
|
|
806
|
+
UPDATE_FAIL = "Unable to update Rule Regulation data!",
|
|
807
|
+
DELETE_FAIL = "Unable to delete Rule Regulation data!",
|
|
808
|
+
NOT_FOUND = "Unable to find Rule Regulation!"
|
|
809
|
+
}
|
|
810
|
+
export declare enum CAREER_ERROR_MESSAGES {
|
|
811
|
+
CREATE_FAIL = "Unable to save Career data!",
|
|
812
|
+
GET_FAIL = "Unable to retrieve Career data!",
|
|
813
|
+
UPDATE_FAIL = "Unable to update Career data!",
|
|
814
|
+
DELETE_FAIL = "Unable to delete Career data!",
|
|
815
|
+
NOT_FOUND = "Unable to find Career!"
|
|
816
|
+
}
|
|
817
|
+
export declare enum SIGNED_URL_ERROR_MESSAGES {
|
|
818
|
+
MISSING_QUERY_PARAMS = "Missing expires or signature in query.",
|
|
819
|
+
URL_EXPIRED = "Signed URL has expired.",
|
|
820
|
+
INVALID_SIGNATURE = "Invalid signature.",
|
|
821
|
+
SECRET_NOT_SET = "SIGNED_URL_SECRET is not set in environment variables."
|
|
822
|
+
}
|
|
823
|
+
export declare enum FLOOR_MANAGEMENT_ERROR_MESSAGES {
|
|
824
|
+
CREATE_FAIL = "Unable to save floor data!",
|
|
825
|
+
GET_FAIL = "Unable to retrieve floor data!",
|
|
826
|
+
INVALID_SELECTED = "Invalid selected floor!",
|
|
827
|
+
UPDATE_FAIL = "Unable to update floor data!",
|
|
828
|
+
DELETE_FAIL = "Unable to delete floor data!",
|
|
829
|
+
NOT_FOUND = "Unable to find floor!",
|
|
830
|
+
CLASS_ROOM_EXITS = "Can not delete floor ,classRoom attached with this floor"
|
|
831
|
+
}
|
|
832
|
+
export declare enum SUBSCRIPTION_PLAN_ERROR_MESSAGES {
|
|
833
|
+
CREATE_FAIL = "Unable to save subscription plan data!",
|
|
834
|
+
DUPLICATE = "Subscription plan title already exist",
|
|
835
|
+
GET_FAIL = "Unable to retrieve subscription plan data!",
|
|
836
|
+
UPDATE_FAIL = "Unable to update subscription plan data!",
|
|
837
|
+
DELETE_FAIL = "Unable to delete subscription plan data!",
|
|
838
|
+
NOT_FOUND = "Unable to find subscription plan data!",
|
|
839
|
+
INVALID_FILES = "Files attached with subscription plan are invalid!",
|
|
840
|
+
INVALID_MODULE_FEATURE = "Selected invalid module or feature!",
|
|
841
|
+
PLAN_USER_EXCEED_MAX_USER = "subscription plan users exceed limit of max users!",
|
|
842
|
+
VALID_CURRENCY_MISMATCHED = "Subscription plan currency and storage currency should be same",
|
|
843
|
+
APPLIED_PLAN_CAN_NOT_DELETE = "Subscription plan could not be deleted as it is applied by some users!"
|
|
844
|
+
}
|
|
845
|
+
export declare enum CLOUD_STORAGE_ERROR_MESSAGES {
|
|
846
|
+
CREATE_FAIL = "Unable to save cloud storage data!",
|
|
847
|
+
GET_FAIL = "Unable to retrieve cloud storage data!",
|
|
848
|
+
UPDATE_FAIL = "Unable to update cloud storage data!",
|
|
849
|
+
DELETE_FAIL = "Unable to delete cloud storage data!",
|
|
850
|
+
NOT_FOUND = "Unable to find cloud storage!"
|
|
851
|
+
}
|
|
852
|
+
export declare enum HOME_WORK_ERROR_MESSAGES {
|
|
853
|
+
CREATE_FAIL = "Unable to save home work!",
|
|
854
|
+
GET_FAIL = "Unable to retrieve home work!",
|
|
855
|
+
UPDATE_FAIL = "Unable to update home work!",
|
|
856
|
+
DELETE_FAIL = "Unable to delete home work!",
|
|
857
|
+
NOT_FOUND = "Unable to find home work!"
|
|
858
|
+
}
|
|
859
|
+
export declare enum USER_HAS_HOME_WORK_ERROR_MESSAGES {
|
|
860
|
+
CREATE_FAIL = "Unable to save user data!",
|
|
861
|
+
GET_FAIL = "Unable to retrieve user data!",
|
|
862
|
+
UPDATE_FAIL = "Unable to update user data!",
|
|
863
|
+
DELETE_FAIL = "Unable to delete user data!",
|
|
864
|
+
NOT_FOUND = "Unable to find user!",
|
|
865
|
+
HOME_WORK_ALREADY_EXISTS = "HomeWork Exits Plz verify your Data",
|
|
866
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for user offer data"
|
|
867
|
+
}
|
|
868
|
+
export declare enum DAILY_BOOK_ERROR_MESSAGES {
|
|
869
|
+
CREATE_FAIL = "Unable to save Daily Book!",
|
|
870
|
+
GET_FAIL = "Unable to retrieve Daily Book!",
|
|
871
|
+
UPDATE_FAIL = "Unable to update Daily Book!",
|
|
872
|
+
DELETE_FAIL = "Unable to delete Daily Book!",
|
|
873
|
+
NOT_FOUND = "Unable to find Daily Book!"
|
|
874
|
+
}
|
|
875
|
+
export declare enum SYLLABUS_ERROR_MESSAGES {
|
|
876
|
+
CREATE_FAIL = "Unable to save syllabus data!",
|
|
877
|
+
DUPLICATE = "Syllabus already exist!",
|
|
878
|
+
GET_FAIL = "Unable to retrieve syllabus data!",
|
|
879
|
+
UPDATE_FAIL = "Unable to update syllabus data!",
|
|
880
|
+
DELETE_FAIL = "Unable to delete syllabus data!",
|
|
881
|
+
NOT_FOUND = "Unable to find syllabus data!"
|
|
882
|
+
}
|
|
883
|
+
export declare enum COIN_PURCHASE_OFFER_ERROR_MESSAGES {
|
|
884
|
+
CREATE_FAIL = "Unable to save coin purchase offer data!",
|
|
885
|
+
GET_FAIL = "Unable to retrieve coin purchase offer data!",
|
|
886
|
+
UPDATE_FAIL = "Unable to update coin purchase offer data!",
|
|
887
|
+
DELETE_FAIL = "Unable to delete coin purchase offer data!",
|
|
888
|
+
NOT_FOUND = "Unable to find coin purchase offer!"
|
|
889
|
+
}
|
|
890
|
+
export declare enum VENDOR_MANAGEMENT_ERROR_MESSAGES {
|
|
891
|
+
CREATE_FAIL = "Unable to save vendor data!",
|
|
892
|
+
DUPLICATE = "Vendor already exist!",
|
|
893
|
+
GET_FAIL = "Unable to retrieve vendor data!",
|
|
894
|
+
UPDATE_FAIL = "Unable to update vendor data!",
|
|
895
|
+
DELETE_FAIL = "Unable to delete vendor data!",
|
|
896
|
+
NOT_FOUND = "Unable to find vendor data!"
|
|
897
|
+
}
|
|
898
|
+
export declare enum SUB_CATEGORY_ERROR_MESSAGES {
|
|
899
|
+
DUPLICATE = "Sub category already exist!",
|
|
900
|
+
CREATE_FAIL = "Unable to save Sub-category data!",
|
|
901
|
+
GET_FAIL = "Unable to retrieve Sub-category data!",
|
|
902
|
+
UPDATE_FAIL = "Unable to update Sub-category data!",
|
|
903
|
+
DELETE_FAIL = "Unable to delete Sub-category data!",
|
|
904
|
+
NOT_FOUND = "Unable to find Sub-category!",
|
|
905
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for Sub-category data",
|
|
906
|
+
SUB_CATEGORY_IN_USE = "Sub-category is in use by product, cannot be deleted!"
|
|
907
|
+
}
|
|
908
|
+
export declare enum PRODUCT_ERROR_MESSAGES {
|
|
909
|
+
DUPLICATE = "Product already exist!",
|
|
910
|
+
CREATE_FAIL = "Unable to save Product data!",
|
|
911
|
+
GET_FAIL = "Unable to retrieve Product data!",
|
|
912
|
+
UPDATE_FAIL = "Unable to update Product data!",
|
|
913
|
+
DELETE_FAIL = "Unable to delete Product data!",
|
|
914
|
+
NOT_FOUND = "Unable to find Product!",
|
|
915
|
+
INSTITUTE_NOT_FOUND = "Institute Not Found for Product data",
|
|
916
|
+
PRODUCT_IN_USE = "Product is in use by invoice, cannot be deleted!"
|
|
917
|
+
}
|
|
918
|
+
export declare enum INVOICE_ERROR_MESSAGES {
|
|
919
|
+
CREATE_FAIL = "Unable to save invoice data!",
|
|
920
|
+
DUPLICATE = "Invoice already exist!",
|
|
921
|
+
GET_FAIL = "Unable to retrieve invoice data!",
|
|
922
|
+
UPDATE_FAIL = "Unable to update invoice data!",
|
|
923
|
+
DELETE_FAIL = "Unable to delete invoice data!",
|
|
924
|
+
NOT_FOUND = "Unable to find invoice data!",
|
|
925
|
+
INVALID_LINK = "Invalid Link Which you Try to open"
|
|
926
|
+
}
|
|
927
|
+
export declare enum COLUMN_ERROR_MESSAGES {
|
|
928
|
+
CREATE_FAIL = "Unable to save column data!",
|
|
929
|
+
DUPLICATE = "Column title already exist!",
|
|
930
|
+
GET_FAIL = "Unable to retrieve column data!",
|
|
931
|
+
UPDATE_FAIL = "Unable to update column data!",
|
|
932
|
+
DELETE_FAIL = "Unable to delete column data!",
|
|
933
|
+
NOT_FOUND = "Unable to find column data!",
|
|
934
|
+
INVALID_LINK = "Invalid Link Which you Try to open"
|
|
935
|
+
}
|
|
936
|
+
export declare enum PDC_HISTORY_ERROR_MESSAGES {
|
|
937
|
+
NOT_FOUND = "Unable to find pdc history data!"
|
|
938
|
+
}
|
|
939
|
+
export declare enum DASHBOARD_MANAGEMENT_ERROR_MESSAGES {
|
|
940
|
+
CREATE_FAIL = "Unable to save Dashboard Management data!",
|
|
941
|
+
DUPLICATE = "Dashboard Management already exist!",
|
|
942
|
+
GET_FAIL = "Unable to retrieve Dashboard Management data!",
|
|
943
|
+
UPDATE_FAIL = "Unable to update Dashboard Management data!",
|
|
944
|
+
DELETE_FAIL = "Unable to delete Dashboard Management data!",
|
|
945
|
+
NOT_FOUND = "Unable to find Dashboard Management data!"
|
|
946
|
+
}
|
|
947
|
+
export declare enum CERTIFICATES_MANAGEMENT_ERROR_MESSAGES {
|
|
948
|
+
CREATE_FAIL = "Unable to save Certificates Management data!",
|
|
949
|
+
GET_FAIL = "Unable to retrieve Certificates Management data!",
|
|
950
|
+
UPDATE_FAIL = "Unable to update Certificates Management data!",
|
|
951
|
+
DELETE_FAIL = "Unable to delete Certificates Management data!",
|
|
952
|
+
NOT_FOUND = "Unable to find Certificates Management data!",
|
|
953
|
+
ALREADY_EXISTS = "Certificates Management already exists with the same name!"
|
|
954
|
+
}
|
|
955
|
+
export declare enum CERTIFICATES_HISTORY_ERROR_MESSAGES {
|
|
956
|
+
CREATE_FAIL = "Unable to save Certificates History data!",
|
|
957
|
+
GET_FAIL = "Unable to retrieve Certificates History data!",
|
|
958
|
+
NOT_FOUND = "Unable to find Certificates Management data!"
|
|
959
|
+
}
|
|
960
|
+
export declare enum REPLACE_TEACHER_ERROR_MESSAGES {
|
|
961
|
+
CREATE_FAIL = "Unable to save replace teacher data!",
|
|
962
|
+
DUPLICATE = "Replace teacher already exist!",
|
|
963
|
+
GET_FAIL = "Unable to retrieve data!",
|
|
964
|
+
UPDATE_FAIL = "Unable to update data!",
|
|
965
|
+
DELETE_FAIL = "Unable to delete data!",
|
|
966
|
+
NOT_FOUND = "Unable to find data!",
|
|
967
|
+
INVALID_LINK = "Invalid Link Which you Try to open",
|
|
968
|
+
DUPLICATE_BATCH = "Duplicate batch id!"
|
|
969
|
+
}
|
|
970
|
+
export declare enum WALLET_ERROR_MESSAGES {
|
|
971
|
+
CREATE_FAIL = "Unable to save wallet data!",
|
|
972
|
+
DUPLICATE = "Wallet already exist!",
|
|
973
|
+
GET_FAIL = "Unable to retrieve wallet data!",
|
|
974
|
+
UPDATE_FAIL = "Unable to update wallet data!",
|
|
975
|
+
DELETE_FAIL = "Unable to delete wallet data!",
|
|
976
|
+
NOT_FOUND = "Unable to find wallet!",
|
|
977
|
+
STORAGE_EXCEEDS = "Wallet storage limit exceeds!"
|
|
978
|
+
}
|
|
979
|
+
export declare enum WALLET_HISTORY_ERROR_MESSAGES {
|
|
980
|
+
CREATE_FAIL = "Unable to save wallet history data!",
|
|
981
|
+
DUPLICATE = "Wallet history already exist!",
|
|
982
|
+
GET_FAIL = "Unable to retrieve wallet history data!",
|
|
983
|
+
UPDATE_FAIL = "Unable to update wallet history data!",
|
|
984
|
+
DELETE_FAIL = "Unable to delete wallet history data!",
|
|
985
|
+
NOT_FOUND = "Unable to find wallet history!"
|
|
986
|
+
}
|
|
987
|
+
export declare enum WALLET_TRANSACTION_ERROR_MESSAGES {
|
|
988
|
+
CREATE_FAIL = "Unable to save wallet transaction data!",
|
|
989
|
+
DUPLICATE = "Wallet transaction already exist!",
|
|
990
|
+
GET_FAIL = "Unable to retrieve wallet transaction data!",
|
|
991
|
+
UPDATE_FAIL = "Unable to update wallet transaction data!",
|
|
992
|
+
DELETE_FAIL = "Unable to delete wallet transaction data!",
|
|
993
|
+
NOT_FOUND = "Unable to find wallet transaction!",
|
|
994
|
+
NOT_CHANGE_COMPLETED = "Can not change completed transaction status!",
|
|
995
|
+
PLAN_ID_UUID_REQUIRED = "Plan id and uuid is required for buy plan!",
|
|
996
|
+
ITEM_COUNT_REQUIRED = "Item count and amount is required for transaction!",
|
|
997
|
+
INSTITUTE_REQUIRED = "Institute is required!",
|
|
998
|
+
NOT_ENOUGH_COIN = "User do not have enough coin for transaction!",
|
|
999
|
+
NOT_ENOUGH_STORAGE = "User do not have enough storage for transaction!",
|
|
1000
|
+
USER_EXCEED = "User limit exceed for institute plan!",
|
|
1001
|
+
INVALID_OTP = "Otp is invalid or expired!",
|
|
1002
|
+
INVALID_VOUCHER = "Voucher code is invalid or expired!",
|
|
1003
|
+
USER_TYPE_REQUIRED = "User type required for buy or refund user",
|
|
1004
|
+
CAN_NOT_DOWNGRADE_PLAN = "You can not downgrade your plan!"
|
|
1005
|
+
}
|
|
1006
|
+
export declare enum INSTITUTE_SUBSCRIPTION_PLAN_ERROR_MESSAGES {
|
|
1007
|
+
CREATE_FAIL = "Unable to save institute subscription plan data!",
|
|
1008
|
+
DUPLICATE = "Institute subscription plan already exist!",
|
|
1009
|
+
GET_FAIL = "Unable to retrieve institute subscription plan data!",
|
|
1010
|
+
UPDATE_FAIL = "Unable to update institute subscription plan data!",
|
|
1011
|
+
DELETE_FAIL = "Unable to delete institute subscription plan data!",
|
|
1012
|
+
NOT_FOUND = "Unable to find institute subscription plan!",
|
|
1013
|
+
USED_STORAGE_EXCEEDS_TOTAL = "Used storage exceeds total allow storage",
|
|
1014
|
+
USED_USERS_EXCEEDS_TOTAL = "Used users exceed total allow users"
|
|
1015
|
+
}
|
|
1016
|
+
export declare enum USER_HAS_STORAGE_ERROR_MESSAGES {
|
|
1017
|
+
CREATE_FAIL = "Unable to save user storage data!",
|
|
1018
|
+
DUPLICATE = "User storage already exist!",
|
|
1019
|
+
GET_FAIL = "Unable to retrieve user storage data!",
|
|
1020
|
+
UPDATE_FAIL = "Unable to update user storage data!",
|
|
1021
|
+
DELETE_FAIL = "Unable to delete user storage data!",
|
|
1022
|
+
NOT_FOUND = "Unable to find user storage!"
|
|
1023
|
+
}
|
|
1024
|
+
export declare enum ENTITY_GROUP_ERROR_MESSAGES {
|
|
1025
|
+
CREATE_FAIL = "Unable to save Entity Group!",
|
|
1026
|
+
GET_FAIL = "Unable to retrieve Entity Group!",
|
|
1027
|
+
UPDATE_FAIL = "Unable to update Entity Group!",
|
|
1028
|
+
DELETE_FAIL = "Unable to delete Entity Group!",
|
|
1029
|
+
NOT_FOUND = "Unable to find Entity Group!"
|
|
1030
|
+
}
|
|
1031
|
+
export declare enum JOB_APPLY_ERROR_MESSAGES {
|
|
1032
|
+
CREATE_FAIL = "Unable to save Job Apply data!",
|
|
1033
|
+
DUPLICATE = "Job Apply already exist!",
|
|
1034
|
+
GET_FAIL = "Unable to retrieve Job Apply data!",
|
|
1035
|
+
UPDATE_FAIL = "Unable to update Job Apply data!",
|
|
1036
|
+
DELETE_FAIL = "Unable to delete Job Apply data!",
|
|
1037
|
+
NOT_FOUND = "Unable to find Job Apply data!",
|
|
1038
|
+
ALREADY_APPLIED = "You have already applied for this job!"
|
|
1039
|
+
}
|
|
1040
|
+
export declare enum USER_REQUIRED_STEPS_ERROR_MESSAGES {
|
|
1041
|
+
CREATE_FAIL = "Unable to save User Required Steps data!",
|
|
1042
|
+
GET_FAIL = "Unable to retrieve User Required Steps data!",
|
|
1043
|
+
UPDATE_FAIL = "Unable to update User Required Steps data!",
|
|
1044
|
+
DELETE_FAIL = "Unable to delete User Required Steps data!",
|
|
1045
|
+
NOT_FOUND = "Unable to find User Required Steps data!",
|
|
1046
|
+
ALREADY_EXISTS = "User Required Steps already exists for this step number!"
|
|
1047
|
+
}
|
|
1048
|
+
export declare enum PAYMENT_TRANSACTION_ERROR_MESSAGES {
|
|
1049
|
+
CREATE_FAIL = "Unable to save Payment Transaction!",
|
|
1050
|
+
GET_FAIL = "Unable to retrieve Payment Transaction!",
|
|
1051
|
+
UPDATE_FAIL = "Unable to update Payment Transaction!",
|
|
1052
|
+
DELETE_FAIL = "Unable to delete Payment Transaction!",
|
|
1053
|
+
NOT_FOUND = "Unable to find Payment Transaction!",
|
|
1054
|
+
UNSUPPORTED_GATEWAY = "Unsupported payment gateway!"
|
|
1055
|
+
}
|