gst-common 1.3.3 → 1.3.5
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/index.d.cts +34 -1
- package/dist/index.d.ts +34 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -635,13 +635,24 @@ type TProposedLearningList = {
|
|
|
635
635
|
classId: string;
|
|
636
636
|
title?: string;
|
|
637
637
|
} & BasePaginationParams;
|
|
638
|
+
type TProposedLearningStudentList = {
|
|
639
|
+
classId: string;
|
|
640
|
+
title?: string;
|
|
641
|
+
} & BasePaginationParams;
|
|
638
642
|
type TProposedLearningDetail = {
|
|
639
643
|
id: string;
|
|
640
644
|
};
|
|
645
|
+
type TProposedLearningStudentDetail = {
|
|
646
|
+
id: string;
|
|
647
|
+
};
|
|
641
648
|
type TClassStatisticGroupByMonth = {
|
|
642
649
|
classId: string;
|
|
643
650
|
numberOfYear: number;
|
|
644
651
|
};
|
|
652
|
+
type TClassStatisticStudentGroupByMonth = {
|
|
653
|
+
classId: string;
|
|
654
|
+
numberOfYear: number;
|
|
655
|
+
};
|
|
645
656
|
|
|
646
657
|
type TProgramRegisteredMeTutorEdit = {
|
|
647
658
|
id: string;
|
|
@@ -799,6 +810,7 @@ type TCLassStudentStatisticRes = {
|
|
|
799
810
|
totalPaidFee: number;
|
|
800
811
|
totalUnconfirmedFee: number;
|
|
801
812
|
totalUnpaidFee: number;
|
|
813
|
+
totalHourCompleted: number;
|
|
802
814
|
};
|
|
803
815
|
type TClassNotificationCreateRes = TClassNotificationEntity;
|
|
804
816
|
type TClassNotificationUpdateRes = TClassNotificationEntity;
|
|
@@ -893,6 +905,14 @@ type TProposedLearningListRes = {
|
|
|
893
905
|
})[];
|
|
894
906
|
total: number;
|
|
895
907
|
};
|
|
908
|
+
type TProposedLearningStudentListRes = {
|
|
909
|
+
list: (TProposedLearningEntity & {
|
|
910
|
+
hasPaid: boolean;
|
|
911
|
+
totalLessons: number;
|
|
912
|
+
totalTuition: number;
|
|
913
|
+
})[];
|
|
914
|
+
total: number;
|
|
915
|
+
};
|
|
896
916
|
type TProposedLearningDetailRes = TProposedLearningEntity & {
|
|
897
917
|
class: TClassEntity;
|
|
898
918
|
hasPaid: boolean;
|
|
@@ -900,6 +920,13 @@ type TProposedLearningDetailRes = TProposedLearningEntity & {
|
|
|
900
920
|
totalTuition: number;
|
|
901
921
|
lessons: TLessonEntity[];
|
|
902
922
|
};
|
|
923
|
+
type TProposedLearningStudentDetailRes = TProposedLearningEntity & {
|
|
924
|
+
class: TClassEntity;
|
|
925
|
+
hasPaid: boolean;
|
|
926
|
+
totalLessons: number;
|
|
927
|
+
totalTuition: number;
|
|
928
|
+
lessons: TLessonEntity[];
|
|
929
|
+
};
|
|
903
930
|
type TProposedLearningEditRes = TProposedLearningEntity & {
|
|
904
931
|
class: TClassEntity;
|
|
905
932
|
proposedLearningLessons?: TProposedLearningLessonEntity[];
|
|
@@ -910,5 +937,11 @@ type TClassStatisticGroupByMonthRes = {
|
|
|
910
937
|
totalCompleted: number;
|
|
911
938
|
totalCompletedTuition: number;
|
|
912
939
|
}[];
|
|
940
|
+
type TClassStatisticGroupStudentByMonthRes = {
|
|
941
|
+
month: number;
|
|
942
|
+
totalCompletedHours: number;
|
|
943
|
+
totalCompleted: number;
|
|
944
|
+
totalCompletedTuition: number;
|
|
945
|
+
}[];
|
|
913
946
|
|
|
914
|
-
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TExtendLessonTimesDTO, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
947
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStatisticGroupStudentByMonthRes, type TClassStatisticStudentGroupByMonth, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TExtendLessonTimesDTO, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
package/dist/index.d.ts
CHANGED
|
@@ -635,13 +635,24 @@ type TProposedLearningList = {
|
|
|
635
635
|
classId: string;
|
|
636
636
|
title?: string;
|
|
637
637
|
} & BasePaginationParams;
|
|
638
|
+
type TProposedLearningStudentList = {
|
|
639
|
+
classId: string;
|
|
640
|
+
title?: string;
|
|
641
|
+
} & BasePaginationParams;
|
|
638
642
|
type TProposedLearningDetail = {
|
|
639
643
|
id: string;
|
|
640
644
|
};
|
|
645
|
+
type TProposedLearningStudentDetail = {
|
|
646
|
+
id: string;
|
|
647
|
+
};
|
|
641
648
|
type TClassStatisticGroupByMonth = {
|
|
642
649
|
classId: string;
|
|
643
650
|
numberOfYear: number;
|
|
644
651
|
};
|
|
652
|
+
type TClassStatisticStudentGroupByMonth = {
|
|
653
|
+
classId: string;
|
|
654
|
+
numberOfYear: number;
|
|
655
|
+
};
|
|
645
656
|
|
|
646
657
|
type TProgramRegisteredMeTutorEdit = {
|
|
647
658
|
id: string;
|
|
@@ -799,6 +810,7 @@ type TCLassStudentStatisticRes = {
|
|
|
799
810
|
totalPaidFee: number;
|
|
800
811
|
totalUnconfirmedFee: number;
|
|
801
812
|
totalUnpaidFee: number;
|
|
813
|
+
totalHourCompleted: number;
|
|
802
814
|
};
|
|
803
815
|
type TClassNotificationCreateRes = TClassNotificationEntity;
|
|
804
816
|
type TClassNotificationUpdateRes = TClassNotificationEntity;
|
|
@@ -893,6 +905,14 @@ type TProposedLearningListRes = {
|
|
|
893
905
|
})[];
|
|
894
906
|
total: number;
|
|
895
907
|
};
|
|
908
|
+
type TProposedLearningStudentListRes = {
|
|
909
|
+
list: (TProposedLearningEntity & {
|
|
910
|
+
hasPaid: boolean;
|
|
911
|
+
totalLessons: number;
|
|
912
|
+
totalTuition: number;
|
|
913
|
+
})[];
|
|
914
|
+
total: number;
|
|
915
|
+
};
|
|
896
916
|
type TProposedLearningDetailRes = TProposedLearningEntity & {
|
|
897
917
|
class: TClassEntity;
|
|
898
918
|
hasPaid: boolean;
|
|
@@ -900,6 +920,13 @@ type TProposedLearningDetailRes = TProposedLearningEntity & {
|
|
|
900
920
|
totalTuition: number;
|
|
901
921
|
lessons: TLessonEntity[];
|
|
902
922
|
};
|
|
923
|
+
type TProposedLearningStudentDetailRes = TProposedLearningEntity & {
|
|
924
|
+
class: TClassEntity;
|
|
925
|
+
hasPaid: boolean;
|
|
926
|
+
totalLessons: number;
|
|
927
|
+
totalTuition: number;
|
|
928
|
+
lessons: TLessonEntity[];
|
|
929
|
+
};
|
|
903
930
|
type TProposedLearningEditRes = TProposedLearningEntity & {
|
|
904
931
|
class: TClassEntity;
|
|
905
932
|
proposedLearningLessons?: TProposedLearningLessonEntity[];
|
|
@@ -910,5 +937,11 @@ type TClassStatisticGroupByMonthRes = {
|
|
|
910
937
|
totalCompleted: number;
|
|
911
938
|
totalCompletedTuition: number;
|
|
912
939
|
}[];
|
|
940
|
+
type TClassStatisticGroupStudentByMonthRes = {
|
|
941
|
+
month: number;
|
|
942
|
+
totalCompletedHours: number;
|
|
943
|
+
totalCompleted: number;
|
|
944
|
+
totalCompletedTuition: number;
|
|
945
|
+
}[];
|
|
913
946
|
|
|
914
|
-
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TExtendLessonTimesDTO, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
947
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStatisticGroupStudentByMonthRes, type TClassStatisticStudentGroupByMonth, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TExtendLessonTimesDTO, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|