@eeplatform/basic-edu 1.8.1 → 1.8.3
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1148 -1021
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +272 -145
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -376,12 +376,14 @@ declare function useEnrollmentService(): {
|
|
|
376
376
|
id: bson.ObjectId;
|
|
377
377
|
}>;
|
|
378
378
|
updateStatusById: (_id: string, status: string) => Promise<string>;
|
|
379
|
+
updateStatusWithId: (_id: string, status: string) => Promise<string>;
|
|
379
380
|
};
|
|
380
381
|
|
|
381
382
|
declare function useEnrollmentController(): {
|
|
382
383
|
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
383
384
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
384
385
|
updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
386
|
+
updateStatusWithId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
385
387
|
};
|
|
386
388
|
|
|
387
389
|
type TGradeLevel = {
|
|
@@ -1643,6 +1645,7 @@ declare function useProgramScreeningController(): {
|
|
|
1643
1645
|
updateField: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1644
1646
|
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1645
1647
|
updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1648
|
+
updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1646
1649
|
};
|
|
1647
1650
|
|
|
1648
1651
|
export { MAsset, MBuilding, MBuildingUnit, MCurriculum, MGradeLevel, MLearner, MPersonnel, MPlantilla, MStockCard, TAddress, TAddressInformation, TAsset, TBasicEduCount, TBuilding, TBuildingUnit, TCurriculum, TDivision, TEnrollment, TGradeLevel, TLearner, TLearnerInfo, TLearningModality, TParentGuardianInfo, TPersonContact, TPersonnel, TPlantilla, TProgram, TProgramScreening, TRegion, TReturningLearnerInfo, TSchool, TSection, TSectionPreset, TSectionStudent, TSectionSubject, TSeniorHighInformation, TStockCard, TSubject, TTeachingLoad, TTeachingLoadSlot, allowedSectionStudentStatuses, modelBasicEduCount, modelDivision, modelProgram, modelProgramScreening, modelRegion, modelSchool, modelSection, modelSectionPreset, modelSectionStudent, modelSectionSubject, modelSubject, modelTeachingLoad, modelTeachingLoadSlot, schemaAsset, schemaAssetUpdateOption, schemaBasicEduCount, schemaBuilding, schemaBuildingUnit, schemaCurriculum, schemaDivision, schemaDivisionUpdate, schemaEnrollment, schemaGenerateSections, schemaGradeLevel, schemaPersonnel, schemaPlantilla, schemaProgram, schemaProgramScreening, schemaProgramScreeningUpdate, schemaProgramUpdate, schemaRegion, schemaSchool, schemaSchoolUpdate, schemaSection, schemaSectionPreset, schemaSectionStudent, schemaSectionSubject, schemaSectionSubjectSetup, schemaStockCard, schemaSubject, schemaSubjectAdd, schemaTeachingLoad, schemaTeachingLoadSlot, schemaUpdateOptions, schemaUpdateStatus, useAssetController, useAssetRepo, useBasicEduCountRepo, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useCurriculumController, useCurriculumRepo, useDivisionController, useDivisionRepo, useDivisionService, useEnrollmentController, useEnrollmentRepo, useEnrollmentService, useGradeLevelController, useGradeLevelRepo, useLearnerController, useLearnerRepo, usePersonnelController, usePersonnelRepo, usePlantillaController, usePlantillaRepo, usePlantillaService, useProgramController, useProgramRepo, useProgramScreeningController, useProgramScreeningRepo, useRegionController, useRegionRepo, useSchoolController, useSchoolRepo, useSchoolService, useSectionController, useSectionPresetController, useSectionPresetRepo, useSectionRepo, useSectionStudentController, useSectionStudentRepo, useSectionSubjectController, useSectionSubjectRepo, useSectionSubjectService, useStockCardController, useStockCardRepository, useStockCardService, useSubjectController, useSubjectRepo, useSubjectService, useTeachingLoadController, useTeachingLoadRepo, useTeachingLoadSlotController, useTeachingLoadSlotRepo };
|