gst-common 1.7.63 → 1.7.65
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.cjs +13 -0
- package/dist/index.d.cts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -110,6 +110,7 @@ __export(index_exports, {
|
|
|
110
110
|
SORT_TYPE: () => SORT_TYPE,
|
|
111
111
|
STUDENT_IN_CLASS_ROOM_STATUS: () => STUDENT_IN_CLASS_ROOM_STATUS,
|
|
112
112
|
TEACHING_TIME_RANGE: () => TEACHING_TIME_RANGE,
|
|
113
|
+
TEACHING_VIDEO_STATUS: () => TEACHING_VIDEO_STATUS,
|
|
113
114
|
TIMEOUT_SECONDS_MEETING: () => TIMEOUT_SECONDS_MEETING,
|
|
114
115
|
TRANSACTION_FEE: () => TRANSACTION_FEE,
|
|
115
116
|
TRANSACTION_GATEWAY: () => TRANSACTION_GATEWAY,
|
|
@@ -411,6 +412,12 @@ var MESSAGE_TYPE = /* @__PURE__ */ ((MESSAGE_TYPE2) => {
|
|
|
411
412
|
MESSAGE_TYPE2["IMAGE"] = "IMAGE";
|
|
412
413
|
MESSAGE_TYPE2["VIDEO"] = "VIDEO";
|
|
413
414
|
MESSAGE_TYPE2["AUDIO"] = "AUDIO";
|
|
415
|
+
MESSAGE_TYPE2["CLASS_INVITATION"] = "CLASS_INVITATION";
|
|
416
|
+
MESSAGE_TYPE2["CLASS_CANCELED"] = "CLASS_CANCELED";
|
|
417
|
+
MESSAGE_TYPE2["CLASS_CONFIRM"] = "CLASS_CONFIRM";
|
|
418
|
+
MESSAGE_TYPE2["TRAIL_LESSON_INVITATION"] = "TRAIL_LESSON_INVITATION";
|
|
419
|
+
MESSAGE_TYPE2["TRAIL_LESSON_CONFIRM"] = "TRAIL_LESSON_CONFIRM";
|
|
420
|
+
MESSAGE_TYPE2["TRAIL_LESSON_CANCELED"] = "TRAIL_LESSON_CANCELED";
|
|
414
421
|
return MESSAGE_TYPE2;
|
|
415
422
|
})(MESSAGE_TYPE || {});
|
|
416
423
|
var CONVERSATION_TYPE = /* @__PURE__ */ ((CONVERSATION_TYPE2) => {
|
|
@@ -418,6 +425,11 @@ var CONVERSATION_TYPE = /* @__PURE__ */ ((CONVERSATION_TYPE2) => {
|
|
|
418
425
|
CONVERSATION_TYPE2["GROUP"] = "GROUP";
|
|
419
426
|
return CONVERSATION_TYPE2;
|
|
420
427
|
})(CONVERSATION_TYPE || {});
|
|
428
|
+
var TEACHING_VIDEO_STATUS = /* @__PURE__ */ ((TEACHING_VIDEO_STATUS2) => {
|
|
429
|
+
TEACHING_VIDEO_STATUS2["VERIFIED"] = "VERIFIED";
|
|
430
|
+
TEACHING_VIDEO_STATUS2["WAIT_FOR_VERIFY"] = "WAIT_FOR_VERIFY";
|
|
431
|
+
return TEACHING_VIDEO_STATUS2;
|
|
432
|
+
})(TEACHING_VIDEO_STATUS || {});
|
|
421
433
|
|
|
422
434
|
// src/constant.ts
|
|
423
435
|
var OTP_RESEND_TIME = 60;
|
|
@@ -1102,6 +1114,7 @@ var RTC_ROLES = /* @__PURE__ */ ((RTC_ROLES2) => {
|
|
|
1102
1114
|
SORT_TYPE,
|
|
1103
1115
|
STUDENT_IN_CLASS_ROOM_STATUS,
|
|
1104
1116
|
TEACHING_TIME_RANGE,
|
|
1117
|
+
TEACHING_VIDEO_STATUS,
|
|
1105
1118
|
TIMEOUT_SECONDS_MEETING,
|
|
1106
1119
|
TRANSACTION_FEE,
|
|
1107
1120
|
TRANSACTION_GATEWAY,
|
package/dist/index.d.cts
CHANGED
|
@@ -606,6 +606,11 @@ type TTutorEntity = {
|
|
|
606
606
|
account: TAccountEntity;
|
|
607
607
|
tuitionPerHour: number;
|
|
608
608
|
subjects: TSubjectEntity[];
|
|
609
|
+
teachingVideos: TTeachingVideoEntity[];
|
|
610
|
+
} & BaseEntity;
|
|
611
|
+
type TTeachingVideoEntity = {
|
|
612
|
+
url: string;
|
|
613
|
+
status: TEACHING_VIDEO_STATUS;
|
|
609
614
|
} & BaseEntity;
|
|
610
615
|
type TStudent = {
|
|
611
616
|
account: TAccountEntity;
|
|
@@ -1216,12 +1221,22 @@ declare enum MESSAGE_TYPE {
|
|
|
1216
1221
|
TEXT = "TEXT",
|
|
1217
1222
|
IMAGE = "IMAGE",
|
|
1218
1223
|
VIDEO = "VIDEO",
|
|
1219
|
-
AUDIO = "AUDIO"
|
|
1224
|
+
AUDIO = "AUDIO",
|
|
1225
|
+
CLASS_INVITATION = "CLASS_INVITATION",// Gia sư gửi lời mời học
|
|
1226
|
+
CLASS_CANCELED = "CLASS_CANCELED",// Hủy buổi học
|
|
1227
|
+
CLASS_CONFIRM = "CLASS_CONFIRM",// Học viên xác nhận buổi học
|
|
1228
|
+
TRAIL_LESSON_INVITATION = "TRAIL_LESSON_INVITATION",// Gia sư gửi lời mời dạy thử
|
|
1229
|
+
TRAIL_LESSON_CONFIRM = "TRAIL_LESSON_CONFIRM",// Học viên xác nhận học thử
|
|
1230
|
+
TRAIL_LESSON_CANCELED = "TRAIL_LESSON_CANCELED"
|
|
1220
1231
|
}
|
|
1221
1232
|
declare enum CONVERSATION_TYPE {
|
|
1222
1233
|
ONE_TO_ONE = "ONE_TO_ONE",
|
|
1223
1234
|
GROUP = "GROUP"
|
|
1224
1235
|
}
|
|
1236
|
+
declare enum TEACHING_VIDEO_STATUS {
|
|
1237
|
+
VERIFIED = "VERIFIED",
|
|
1238
|
+
WAIT_FOR_VERIFY = "WAIT_FOR_VERIFY"
|
|
1239
|
+
}
|
|
1225
1240
|
|
|
1226
1241
|
declare const OTP_RESEND_TIME = 60;
|
|
1227
1242
|
declare const URL_CLASS_DETAIL = "/class-detail";
|
|
@@ -3174,4 +3189,4 @@ type TLessonUncompletedDocumentsRes = (TGroupQuestionEntity & {
|
|
|
3174
3189
|
sessionGroupQuestionsCorrectQuestion: number;
|
|
3175
3190
|
})[];
|
|
3176
3191
|
|
|
3177
|
-
export { ACCEPTED_AUDIO_TYPES, ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, ACCOUNT_STATUS, ANSWER_QUESTION_TYPE, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BaseInternalEntity, type BasePaginationParams, type BaseResponse, CATEGORY_STATUS, CERTIFICATION_STATUS, CHECK_INTERVAL_MEETING, CLASS_INHERITANCE_TYPE, CLASS_ROOM_STATUS, CLASS_STATUS, CLASS_STATUS_CANCELED_REASON, CLASS_STATUS_CANCELED_REASON_STUDENT, CLASS_STATUS_CANCELED_REASON_TUTOR, CLASS_STATUS_ORDER, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CONVERSATION_TYPE, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, HASHED_PIN_LENGTH, INTERNAL_ROLE, LESSON_ACTIVITY_STATUS, LESSON_ATTENDANCE_STATUS, LESSON_FEE_RATE, LESSON_INHERITANCE_TYPE, LIMIT_HOURS_JOIN_MEETING, MAX_DOCUMENT_FOLDER, MAX_KEYWORD_PROGRAM, MAX_PROGRAM_TUITION_FEE, MAX_STUDENT_CLASS_ROOM, MAX_STUDENT_DOCUMENT_FOLDER, MESSAGE_TYPE, MISSING_TRANSACTION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_ACCOUNT_STATUS, OBJECT_ANSWER_QUESTION_TYPE, OBJECT_CERTIFICATION_STATUS, OBJECT_CLASS_ROOM_STATUS, OBJECT_CLASS_STATUS, OBJECT_CLASS_STATUS_CANCELED_REASON, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_LESSON_ATTENDANCE_STATUS, OBJECT_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_PROGRAM_TYPE, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_REQUEST_TUTOR_FORM_STATUS, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJECT_STUDENT_IN_CLASS_ROOM_STATUS, OBJECT_TEACHING_TIME_RANGE, OBJECT_TRANSACTION_STATUS, OBJECT_TRANSACTION_TYPE, OBJECT_WITHDRAW_REQUEST_STATUS, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, PROGRAM_TYPE, PROPOSED_CATEGORY_STATUS, PROPOSED_LEARNING_PAYMENT_STATUS, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_MODE, REGISTER_PROGRAM_TIME, REQUEST_TUTOR_FORM_STATUS, RTC_ROLES, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, STUDENT_IN_CLASS_ROOM_STATUS, type TAccountAvailableTimeEntity, type TAccountBankInfoCreate, type TAccountBankInfoCreateRes, type TAccountBankInfoCurrentRes, type TAccountBankInfoEntity, type TAccountBankInfoUpdate, type TAccountBankInfoUpdateRes, type TAccountChangeHashedPin, type TAccountChangePassword, type TAccountEnterOTPForgotHashedPin, type TAccountEnterOTPForgotHashedPinRes, type TAccountEntity, type TAccountFollow, type TAccountForgotHashedPinRes, type TAccountHashedPin, type TAccountPublicCheckUsernameExist, type TAccountPublicCheckUsernameExistRes, type TAccountPublicDetailRes, type TAccountPublicListFollowerRes, type TAccountPublicListFollowingRes, type TAccountPublicListSitemap, type TAccountPublicListSitemapRes, type TAccountPublicPreviewRes, type TAccountVerifyPin, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, type TBankEntity, type TBankPublicList, type TBankPublicListRes, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TCategoryEntity, type TCategoryInternalAddKeywords, type TCategoryInternalAddKeywordsRes, type TCategoryInternalAddSubject, type TCategoryInternalAddSubjectRes, type TCategoryInternalCreate, type TCategoryInternalCreateRes, type TCategoryInternalDeleteRes, type TCategoryInternalList, type TCategoryInternalListKeywordBySubjectRes, type TCategoryInternalListRes, type TCategoryInternalUpdate, type TCategoryInternalUpdateRes, type TCategoryPublicListKeyword, type TCategoryPublicListKeywordRes, type TCategoryPublicListSubjectRes, type TCategoryPublicTreeRes, type TCertificationEntity, type TChangeForgotHashedPin, type TChatConversationLastActive, type TChatConversationLastActiveRes, type TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, type TChatTotalUnseenRes, type TChatTyping, type TClassCancel, type TClassCancelRes, type TClassCountStatus, type TClassCountStatusRes, type TClassCreateByRequestTutor, type TClassCreateByRequestTutorRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStatistic, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, type TClassRoomCreate, type TClassRoomCreateRes, type TClassRoomEntity, type TClassSelectOptions, type TClassSelectOptionsRes, type TClassStatisticGroupByClass, type TClassStatisticGroupByClassRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByClass, type TClassStudentStatisticGroupByClassRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TConversationEntity, type TConversationMessageEntity, type TConversationParticipantsEntity, type TDayOfWeekEntity, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteMultiple, type TDocumentFolderCreate, type TDocumentFolderCreateRes, type TDocumentFolderEntity, type TDocumentFolderImport, type TDocumentFolderImportRes, type TDocumentFolderListRes, type TDocumentFolderTreeListRes, type TDocumentFolderUpdate, type TDocumentFolderUpdateRes, type TDocumentGetByDocuments, type TDocumentGetByDocumentsRes, type TDocumentImport, type TDocumentList, type TDocumentListRes, type TDocumentMove, type TDocumentMoveRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, TEACHING_TIME_RANGE, type TEditorDeleteRes, type TEditorDetailRes, type TEditorEntity, type TEditorStudentDetailRes, type TEditorUpdate, type TEditorUpdateRes, type TExtendLessonTimesDTO, type TFileDeleteRes, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUpdate, type TFileLessonUpdateRes, type TFileLessonUpload, type TFileLessonUploadRes, type TFileUpdate, type TFileUpdateRes, type TFileUploadCommonRes, type TGroupQuestionChangeAnswerQuestionType, type TGroupQuestionChangeAnswerQuestionTypeRes, type TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultHistories, type TGroupQuestionResultHistoriesRes, type TGroupQuestionResultRes, type TGroupQuestionSendComment, type TGroupQuestionSendCommentRes, type TGroupQuestionSendFeedback, type TGroupQuestionSendFeedbackRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultHistories, type TGroupQuestionStudentResultHistoriesRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type THistoryLoginEntity, TIMEOUT_SECONDS_MEETING, type TInternalAccountEntity, type TInternalAccountList, type TInternalAccountListRes, type TInternalAccountLogin, type TInternalAccountLoginRes, type TInternalAccountNew, type TInternalAccountNewRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonClassRoomEntity, type TLessonConfirm, type TLessonConfirmRes, type TLessonCreateEditor, type TLessonCreateEditorRes, type TLessonCreateGroupQuestion, type TLessonCreateGroupQuestionRes, type TLessonDetailRes, type TLessonDocumentsRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonImport, type TLessonImportRes, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStatistic, type TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TLessonStudentUncompletedDocumentsRes, type TLessonUncompletedDocumentsRes, type TMeetingEntity, type TMeetingJoinRes, type TMeetingJoiningAccountsRes, type TMeetingLessonDetailRes, type TMeetingParticipantEntity, type TMeetingParticipantsRes, type TMeetingStartRes, type TMessageEntity, type TMessageSeenEntity, type TNotificationEntity, type TPostAllComment, type TPostAllCommentDeleteRes, type TPostAllCommentRes, type TPostAllCommentUpdate, type TPostAllCommentUpdateRes, type TPostAllCreateDiscussion, type TPostAllCreateDiscussionRes, type TPostAllListPostByAccount, type TPostAllListPostByAccountRes, type TPostAllMyPost, type TPostAllMyPostRes, type TPostAllRemoveUpvote, type TPostAllReplyComment, type TPostAllReplyCommentRes, type TPostAllShareDocument, type TPostAllShareDocumentRes, type TPostAllUpdateDiscussion, type TPostAllUpdateDiscussionRes, type TPostAllUpdateShareDocument, type TPostAllUpdateShareDocumentRes, type TPostAllUpload, type TPostAllUploadRes, type TPostCommentEntity, type TPostDocumentEntity, type TPostDocumentPublicEditorDetailRes, type TPostDocumentPublicGroupQuestionDetailRes, type TPostEntity, type TPostPublicDetailRes, type TPostPublicListComment, type TPostPublicListCommentRes, type TPostPublicListSiteMap, type TPostPublicListSiteMapRes, type TPostPublicNewFeeds, type TPostPublicNewFeedsRes, type TPostStatistic, type TProgramEntity, type TProgramInternalCrete, type TProgramInternalList, type TProgramInternalListRes, type TProgramInternalUpdate, type TProgramInternalUpdateRes, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramPublicDetailRes, type TProgramPublicLearnedProgram, type TProgramPublicLearnedProgramRes, type TProgramPublicList, type TProgramPublicListRes, type TProgramPublicListSitemap, type TProgramPublicListSitemapRes, type TProgramPublicRecommended, type TProgramPublicRecommendedRes, type TProgramRatingEntity, type TProgramRatingPublicCountByScore, type TProgramRatingPublicCountByScoreRes, type TProgramRatingPublicList, type TProgramRatingPublicListRes, type TProgramRatingStudentCanRate, type TProgramRatingStudentCanRateRes, type TProgramRatingStudentCreateRating, type TProgramRatingStudentCreateRatingRes, type TProgramRatingStudentDeleteRatingRes, type TProgramRatingStudentHasRated, type TProgramRatingStudentHasRatedRes, type TProgramRatingStudentUpdateRating, type TProgramRatingStudentUpdateRatingRes, type TProgramRatingUpload, type TProgramRatingUploadRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedCategoryEntity, type TProposedCategoryInternalListKeywords, type TProposedCategoryInternalListKeywordsRes, type TProposedCategoryInternalListSubjectKeywords, type TProposedCategoryInternalListSubjectKeywordsRes, 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 TQuestionEntity, type TQuestionTypeChoiceEntity, type TQuestionTypeEssayEntity, type TQuestionTypeWordArrangementEntity, TRANSACTION_FEE, TRANSACTION_GATEWAY, TRANSACTION_STATUS, TRANSACTION_TYPE, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreate, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramDetailRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TRegisteredProgramPublicCreate, type TRegisteredProgramPublicCreateRes, type TRegisteredProgramStudentUpdate, type TRegisteredProgramStudentUpdateRes, type TRequestTutorFormCreate, type TRequestTutorFormCreateRes, type TRequestTutorFormEntity, type TRequestTutorFormGetByCodeRes, type TRequestTutorFormInternalAssignTutor, type TRequestTutorFormInternalAssignTutorRes, type TRequestTutorFormInternalCancel, type TRequestTutorFormInternalCancelRes, type TRequestTutorFormInternalCountStatusRes, type TRequestTutorFormInternalList, type TRequestTutorFormInternalListRes, type TRequestTutorFormList, type TRequestTutorFormListRes, type TSessionGroupQuestionEntity, type TSessionGroupQuestionStatistic, type TStudent, type TStudentDocumentChangeOrder, type TStudentDocumentChangeOrderRes, type TStudentDocumentCreateEditor, type TStudentDocumentCreateEditorRes, type TStudentDocumentCreateGroupQuestion, type TStudentDocumentCreateGroupQuestionRes, type TStudentDocumentDeleteMultiple, type TStudentDocumentEntity, type TStudentDocumentEntityRes, type TStudentDocumentFolderCreate, type TStudentDocumentFolderCreateRes, type TStudentDocumentFolderDeleteRes, type TStudentDocumentFolderEntity, type TStudentDocumentFolderImport, type TStudentDocumentFolderImportRes, type TStudentDocumentFolderListRes, type TStudentDocumentFolderUpdate, type TStudentDocumentFolderUpdateRes, type TStudentDocumentGetByDocuments, type TStudentDocumentGetByDocumentsRes, type TStudentDocumentImport, type TStudentDocumentList, type TStudentDocumentListRes, type TStudentDocumentMove, type TStudentDocumentMoveRes, type TStudentDocumentUpload, type TStudentDocumentUploadRes, type TStudentEntity, type TStudentUpdateInterested, type TStudentUpdateInterestedRes, type TSubjectEntity, type TSubmitGroupQuestion, type TTeachingTimeRangeEntity, type TTransactionAllList, type TTransactionAllListRes, type TTransactionEntity, type TTutorAddCertification, type TTutorAddCertificationRes, type TTutorCertificationCertificationRes, type TTutorDeleteCertificationRes, type TTutorDetailCertificationRes, type TTutorEntity, type TTutorInternalCertificationVerify, type TTutorInternalCertificationVerifyRes, type TTutorInternalDetailRes, type TTutorInternalList, type TTutorInternalListRes, type TTutorInternalOptions, type TTutorInternalOptionsRes, type TTutorInternalVerify, type TTutorInternalVerifyRes, type TTutorListCertificationsRes, type TTutorListStudents, type TTutorListStudentsRes, type TTutorPublicList, type TTutorPublicListRes, type TTutorSubmitIdentify, type TTutorSubmitIdentifyRes, type TTutorUpdateCertification, type TTutorUpdateCertificationRes, type TUploadCreateUploadUrl, type TUploadCreateUploadUrlRes, type TWalletEntity, type TWalletInfoRes, type TWithDrawRequestInternalGetOrCreateTransaction, type TWithDrawRequestInternalGetOrCreateTransactionRes, type TWithDrawRequestInternalList, type TWithDrawRequestInternalListRes, type TWithdrawRequestAdd, type TWithdrawRequestAddRes, type TWithdrawRequestCancel, type TWithdrawRequestCancelRes, type TWithdrawRequestCurrentWithdrawRes, type TWithdrawRequestEntity, type TWithdrawRequestList, type TWithdrawRequestListRes, URL_CLASS_DETAIL, WITHDRAW_REQUEST_STATUS };
|
|
3192
|
+
export { ACCEPTED_AUDIO_TYPES, ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, ACCOUNT_STATUS, ANSWER_QUESTION_TYPE, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BaseInternalEntity, type BasePaginationParams, type BaseResponse, CATEGORY_STATUS, CERTIFICATION_STATUS, CHECK_INTERVAL_MEETING, CLASS_INHERITANCE_TYPE, CLASS_ROOM_STATUS, CLASS_STATUS, CLASS_STATUS_CANCELED_REASON, CLASS_STATUS_CANCELED_REASON_STUDENT, CLASS_STATUS_CANCELED_REASON_TUTOR, CLASS_STATUS_ORDER, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CONVERSATION_TYPE, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, HASHED_PIN_LENGTH, INTERNAL_ROLE, LESSON_ACTIVITY_STATUS, LESSON_ATTENDANCE_STATUS, LESSON_FEE_RATE, LESSON_INHERITANCE_TYPE, LIMIT_HOURS_JOIN_MEETING, MAX_DOCUMENT_FOLDER, MAX_KEYWORD_PROGRAM, MAX_PROGRAM_TUITION_FEE, MAX_STUDENT_CLASS_ROOM, MAX_STUDENT_DOCUMENT_FOLDER, MESSAGE_TYPE, MISSING_TRANSACTION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_ACCOUNT_STATUS, OBJECT_ANSWER_QUESTION_TYPE, OBJECT_CERTIFICATION_STATUS, OBJECT_CLASS_ROOM_STATUS, OBJECT_CLASS_STATUS, OBJECT_CLASS_STATUS_CANCELED_REASON, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_LESSON_ATTENDANCE_STATUS, OBJECT_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_PROGRAM_TYPE, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_REQUEST_TUTOR_FORM_STATUS, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJECT_STUDENT_IN_CLASS_ROOM_STATUS, OBJECT_TEACHING_TIME_RANGE, OBJECT_TRANSACTION_STATUS, OBJECT_TRANSACTION_TYPE, OBJECT_WITHDRAW_REQUEST_STATUS, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, PROGRAM_TYPE, PROPOSED_CATEGORY_STATUS, PROPOSED_LEARNING_PAYMENT_STATUS, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_MODE, REGISTER_PROGRAM_TIME, REQUEST_TUTOR_FORM_STATUS, RTC_ROLES, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, STUDENT_IN_CLASS_ROOM_STATUS, type TAccountAvailableTimeEntity, type TAccountBankInfoCreate, type TAccountBankInfoCreateRes, type TAccountBankInfoCurrentRes, type TAccountBankInfoEntity, type TAccountBankInfoUpdate, type TAccountBankInfoUpdateRes, type TAccountChangeHashedPin, type TAccountChangePassword, type TAccountEnterOTPForgotHashedPin, type TAccountEnterOTPForgotHashedPinRes, type TAccountEntity, type TAccountFollow, type TAccountForgotHashedPinRes, type TAccountHashedPin, type TAccountPublicCheckUsernameExist, type TAccountPublicCheckUsernameExistRes, type TAccountPublicDetailRes, type TAccountPublicListFollowerRes, type TAccountPublicListFollowingRes, type TAccountPublicListSitemap, type TAccountPublicListSitemapRes, type TAccountPublicPreviewRes, type TAccountVerifyPin, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, type TBankEntity, type TBankPublicList, type TBankPublicListRes, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TCategoryEntity, type TCategoryInternalAddKeywords, type TCategoryInternalAddKeywordsRes, type TCategoryInternalAddSubject, type TCategoryInternalAddSubjectRes, type TCategoryInternalCreate, type TCategoryInternalCreateRes, type TCategoryInternalDeleteRes, type TCategoryInternalList, type TCategoryInternalListKeywordBySubjectRes, type TCategoryInternalListRes, type TCategoryInternalUpdate, type TCategoryInternalUpdateRes, type TCategoryPublicListKeyword, type TCategoryPublicListKeywordRes, type TCategoryPublicListSubjectRes, type TCategoryPublicTreeRes, type TCertificationEntity, type TChangeForgotHashedPin, type TChatConversationLastActive, type TChatConversationLastActiveRes, type TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, type TChatTotalUnseenRes, type TChatTyping, type TClassCancel, type TClassCancelRes, type TClassCountStatus, type TClassCountStatusRes, type TClassCreateByRequestTutor, type TClassCreateByRequestTutorRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStatistic, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, type TClassRoomCreate, type TClassRoomCreateRes, type TClassRoomEntity, type TClassSelectOptions, type TClassSelectOptionsRes, type TClassStatisticGroupByClass, type TClassStatisticGroupByClassRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByClass, type TClassStudentStatisticGroupByClassRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TConversationEntity, type TConversationMessageEntity, type TConversationParticipantsEntity, type TDayOfWeekEntity, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteMultiple, type TDocumentFolderCreate, type TDocumentFolderCreateRes, type TDocumentFolderEntity, type TDocumentFolderImport, type TDocumentFolderImportRes, type TDocumentFolderListRes, type TDocumentFolderTreeListRes, type TDocumentFolderUpdate, type TDocumentFolderUpdateRes, type TDocumentGetByDocuments, type TDocumentGetByDocumentsRes, type TDocumentImport, type TDocumentList, type TDocumentListRes, type TDocumentMove, type TDocumentMoveRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, TEACHING_TIME_RANGE, TEACHING_VIDEO_STATUS, type TEditorDeleteRes, type TEditorDetailRes, type TEditorEntity, type TEditorStudentDetailRes, type TEditorUpdate, type TEditorUpdateRes, type TExtendLessonTimesDTO, type TFileDeleteRes, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUpdate, type TFileLessonUpdateRes, type TFileLessonUpload, type TFileLessonUploadRes, type TFileUpdate, type TFileUpdateRes, type TFileUploadCommonRes, type TGroupQuestionChangeAnswerQuestionType, type TGroupQuestionChangeAnswerQuestionTypeRes, type TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultHistories, type TGroupQuestionResultHistoriesRes, type TGroupQuestionResultRes, type TGroupQuestionSendComment, type TGroupQuestionSendCommentRes, type TGroupQuestionSendFeedback, type TGroupQuestionSendFeedbackRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultHistories, type TGroupQuestionStudentResultHistoriesRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type THistoryLoginEntity, TIMEOUT_SECONDS_MEETING, type TInternalAccountEntity, type TInternalAccountList, type TInternalAccountListRes, type TInternalAccountLogin, type TInternalAccountLoginRes, type TInternalAccountNew, type TInternalAccountNewRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonClassRoomEntity, type TLessonConfirm, type TLessonConfirmRes, type TLessonCreateEditor, type TLessonCreateEditorRes, type TLessonCreateGroupQuestion, type TLessonCreateGroupQuestionRes, type TLessonDetailRes, type TLessonDocumentsRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonImport, type TLessonImportRes, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStatistic, type TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TLessonStudentUncompletedDocumentsRes, type TLessonUncompletedDocumentsRes, type TMeetingEntity, type TMeetingJoinRes, type TMeetingJoiningAccountsRes, type TMeetingLessonDetailRes, type TMeetingParticipantEntity, type TMeetingParticipantsRes, type TMeetingStartRes, type TMessageEntity, type TMessageSeenEntity, type TNotificationEntity, type TPostAllComment, type TPostAllCommentDeleteRes, type TPostAllCommentRes, type TPostAllCommentUpdate, type TPostAllCommentUpdateRes, type TPostAllCreateDiscussion, type TPostAllCreateDiscussionRes, type TPostAllListPostByAccount, type TPostAllListPostByAccountRes, type TPostAllMyPost, type TPostAllMyPostRes, type TPostAllRemoveUpvote, type TPostAllReplyComment, type TPostAllReplyCommentRes, type TPostAllShareDocument, type TPostAllShareDocumentRes, type TPostAllUpdateDiscussion, type TPostAllUpdateDiscussionRes, type TPostAllUpdateShareDocument, type TPostAllUpdateShareDocumentRes, type TPostAllUpload, type TPostAllUploadRes, type TPostCommentEntity, type TPostDocumentEntity, type TPostDocumentPublicEditorDetailRes, type TPostDocumentPublicGroupQuestionDetailRes, type TPostEntity, type TPostPublicDetailRes, type TPostPublicListComment, type TPostPublicListCommentRes, type TPostPublicListSiteMap, type TPostPublicListSiteMapRes, type TPostPublicNewFeeds, type TPostPublicNewFeedsRes, type TPostStatistic, type TProgramEntity, type TProgramInternalCrete, type TProgramInternalList, type TProgramInternalListRes, type TProgramInternalUpdate, type TProgramInternalUpdateRes, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramPublicDetailRes, type TProgramPublicLearnedProgram, type TProgramPublicLearnedProgramRes, type TProgramPublicList, type TProgramPublicListRes, type TProgramPublicListSitemap, type TProgramPublicListSitemapRes, type TProgramPublicRecommended, type TProgramPublicRecommendedRes, type TProgramRatingEntity, type TProgramRatingPublicCountByScore, type TProgramRatingPublicCountByScoreRes, type TProgramRatingPublicList, type TProgramRatingPublicListRes, type TProgramRatingStudentCanRate, type TProgramRatingStudentCanRateRes, type TProgramRatingStudentCreateRating, type TProgramRatingStudentCreateRatingRes, type TProgramRatingStudentDeleteRatingRes, type TProgramRatingStudentHasRated, type TProgramRatingStudentHasRatedRes, type TProgramRatingStudentUpdateRating, type TProgramRatingStudentUpdateRatingRes, type TProgramRatingUpload, type TProgramRatingUploadRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedCategoryEntity, type TProposedCategoryInternalListKeywords, type TProposedCategoryInternalListKeywordsRes, type TProposedCategoryInternalListSubjectKeywords, type TProposedCategoryInternalListSubjectKeywordsRes, 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 TQuestionEntity, type TQuestionTypeChoiceEntity, type TQuestionTypeEssayEntity, type TQuestionTypeWordArrangementEntity, TRANSACTION_FEE, TRANSACTION_GATEWAY, TRANSACTION_STATUS, TRANSACTION_TYPE, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreate, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramDetailRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TRegisteredProgramPublicCreate, type TRegisteredProgramPublicCreateRes, type TRegisteredProgramStudentUpdate, type TRegisteredProgramStudentUpdateRes, type TRequestTutorFormCreate, type TRequestTutorFormCreateRes, type TRequestTutorFormEntity, type TRequestTutorFormGetByCodeRes, type TRequestTutorFormInternalAssignTutor, type TRequestTutorFormInternalAssignTutorRes, type TRequestTutorFormInternalCancel, type TRequestTutorFormInternalCancelRes, type TRequestTutorFormInternalCountStatusRes, type TRequestTutorFormInternalList, type TRequestTutorFormInternalListRes, type TRequestTutorFormList, type TRequestTutorFormListRes, type TSessionGroupQuestionEntity, type TSessionGroupQuestionStatistic, type TStudent, type TStudentDocumentChangeOrder, type TStudentDocumentChangeOrderRes, type TStudentDocumentCreateEditor, type TStudentDocumentCreateEditorRes, type TStudentDocumentCreateGroupQuestion, type TStudentDocumentCreateGroupQuestionRes, type TStudentDocumentDeleteMultiple, type TStudentDocumentEntity, type TStudentDocumentEntityRes, type TStudentDocumentFolderCreate, type TStudentDocumentFolderCreateRes, type TStudentDocumentFolderDeleteRes, type TStudentDocumentFolderEntity, type TStudentDocumentFolderImport, type TStudentDocumentFolderImportRes, type TStudentDocumentFolderListRes, type TStudentDocumentFolderUpdate, type TStudentDocumentFolderUpdateRes, type TStudentDocumentGetByDocuments, type TStudentDocumentGetByDocumentsRes, type TStudentDocumentImport, type TStudentDocumentList, type TStudentDocumentListRes, type TStudentDocumentMove, type TStudentDocumentMoveRes, type TStudentDocumentUpload, type TStudentDocumentUploadRes, type TStudentEntity, type TStudentUpdateInterested, type TStudentUpdateInterestedRes, type TSubjectEntity, type TSubmitGroupQuestion, type TTeachingTimeRangeEntity, type TTeachingVideoEntity, type TTransactionAllList, type TTransactionAllListRes, type TTransactionEntity, type TTutorAddCertification, type TTutorAddCertificationRes, type TTutorCertificationCertificationRes, type TTutorDeleteCertificationRes, type TTutorDetailCertificationRes, type TTutorEntity, type TTutorInternalCertificationVerify, type TTutorInternalCertificationVerifyRes, type TTutorInternalDetailRes, type TTutorInternalList, type TTutorInternalListRes, type TTutorInternalOptions, type TTutorInternalOptionsRes, type TTutorInternalVerify, type TTutorInternalVerifyRes, type TTutorListCertificationsRes, type TTutorListStudents, type TTutorListStudentsRes, type TTutorPublicList, type TTutorPublicListRes, type TTutorSubmitIdentify, type TTutorSubmitIdentifyRes, type TTutorUpdateCertification, type TTutorUpdateCertificationRes, type TUploadCreateUploadUrl, type TUploadCreateUploadUrlRes, type TWalletEntity, type TWalletInfoRes, type TWithDrawRequestInternalGetOrCreateTransaction, type TWithDrawRequestInternalGetOrCreateTransactionRes, type TWithDrawRequestInternalList, type TWithDrawRequestInternalListRes, type TWithdrawRequestAdd, type TWithdrawRequestAddRes, type TWithdrawRequestCancel, type TWithdrawRequestCancelRes, type TWithdrawRequestCurrentWithdrawRes, type TWithdrawRequestEntity, type TWithdrawRequestList, type TWithdrawRequestListRes, URL_CLASS_DETAIL, WITHDRAW_REQUEST_STATUS };
|
package/dist/index.d.ts
CHANGED
|
@@ -606,6 +606,11 @@ type TTutorEntity = {
|
|
|
606
606
|
account: TAccountEntity;
|
|
607
607
|
tuitionPerHour: number;
|
|
608
608
|
subjects: TSubjectEntity[];
|
|
609
|
+
teachingVideos: TTeachingVideoEntity[];
|
|
610
|
+
} & BaseEntity;
|
|
611
|
+
type TTeachingVideoEntity = {
|
|
612
|
+
url: string;
|
|
613
|
+
status: TEACHING_VIDEO_STATUS;
|
|
609
614
|
} & BaseEntity;
|
|
610
615
|
type TStudent = {
|
|
611
616
|
account: TAccountEntity;
|
|
@@ -1216,12 +1221,22 @@ declare enum MESSAGE_TYPE {
|
|
|
1216
1221
|
TEXT = "TEXT",
|
|
1217
1222
|
IMAGE = "IMAGE",
|
|
1218
1223
|
VIDEO = "VIDEO",
|
|
1219
|
-
AUDIO = "AUDIO"
|
|
1224
|
+
AUDIO = "AUDIO",
|
|
1225
|
+
CLASS_INVITATION = "CLASS_INVITATION",// Gia sư gửi lời mời học
|
|
1226
|
+
CLASS_CANCELED = "CLASS_CANCELED",// Hủy buổi học
|
|
1227
|
+
CLASS_CONFIRM = "CLASS_CONFIRM",// Học viên xác nhận buổi học
|
|
1228
|
+
TRAIL_LESSON_INVITATION = "TRAIL_LESSON_INVITATION",// Gia sư gửi lời mời dạy thử
|
|
1229
|
+
TRAIL_LESSON_CONFIRM = "TRAIL_LESSON_CONFIRM",// Học viên xác nhận học thử
|
|
1230
|
+
TRAIL_LESSON_CANCELED = "TRAIL_LESSON_CANCELED"
|
|
1220
1231
|
}
|
|
1221
1232
|
declare enum CONVERSATION_TYPE {
|
|
1222
1233
|
ONE_TO_ONE = "ONE_TO_ONE",
|
|
1223
1234
|
GROUP = "GROUP"
|
|
1224
1235
|
}
|
|
1236
|
+
declare enum TEACHING_VIDEO_STATUS {
|
|
1237
|
+
VERIFIED = "VERIFIED",
|
|
1238
|
+
WAIT_FOR_VERIFY = "WAIT_FOR_VERIFY"
|
|
1239
|
+
}
|
|
1225
1240
|
|
|
1226
1241
|
declare const OTP_RESEND_TIME = 60;
|
|
1227
1242
|
declare const URL_CLASS_DETAIL = "/class-detail";
|
|
@@ -3174,4 +3189,4 @@ type TLessonUncompletedDocumentsRes = (TGroupQuestionEntity & {
|
|
|
3174
3189
|
sessionGroupQuestionsCorrectQuestion: number;
|
|
3175
3190
|
})[];
|
|
3176
3191
|
|
|
3177
|
-
export { ACCEPTED_AUDIO_TYPES, ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, ACCOUNT_STATUS, ANSWER_QUESTION_TYPE, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BaseInternalEntity, type BasePaginationParams, type BaseResponse, CATEGORY_STATUS, CERTIFICATION_STATUS, CHECK_INTERVAL_MEETING, CLASS_INHERITANCE_TYPE, CLASS_ROOM_STATUS, CLASS_STATUS, CLASS_STATUS_CANCELED_REASON, CLASS_STATUS_CANCELED_REASON_STUDENT, CLASS_STATUS_CANCELED_REASON_TUTOR, CLASS_STATUS_ORDER, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CONVERSATION_TYPE, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, HASHED_PIN_LENGTH, INTERNAL_ROLE, LESSON_ACTIVITY_STATUS, LESSON_ATTENDANCE_STATUS, LESSON_FEE_RATE, LESSON_INHERITANCE_TYPE, LIMIT_HOURS_JOIN_MEETING, MAX_DOCUMENT_FOLDER, MAX_KEYWORD_PROGRAM, MAX_PROGRAM_TUITION_FEE, MAX_STUDENT_CLASS_ROOM, MAX_STUDENT_DOCUMENT_FOLDER, MESSAGE_TYPE, MISSING_TRANSACTION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_ACCOUNT_STATUS, OBJECT_ANSWER_QUESTION_TYPE, OBJECT_CERTIFICATION_STATUS, OBJECT_CLASS_ROOM_STATUS, OBJECT_CLASS_STATUS, OBJECT_CLASS_STATUS_CANCELED_REASON, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_LESSON_ATTENDANCE_STATUS, OBJECT_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_PROGRAM_TYPE, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_REQUEST_TUTOR_FORM_STATUS, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJECT_STUDENT_IN_CLASS_ROOM_STATUS, OBJECT_TEACHING_TIME_RANGE, OBJECT_TRANSACTION_STATUS, OBJECT_TRANSACTION_TYPE, OBJECT_WITHDRAW_REQUEST_STATUS, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, PROGRAM_TYPE, PROPOSED_CATEGORY_STATUS, PROPOSED_LEARNING_PAYMENT_STATUS, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_MODE, REGISTER_PROGRAM_TIME, REQUEST_TUTOR_FORM_STATUS, RTC_ROLES, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, STUDENT_IN_CLASS_ROOM_STATUS, type TAccountAvailableTimeEntity, type TAccountBankInfoCreate, type TAccountBankInfoCreateRes, type TAccountBankInfoCurrentRes, type TAccountBankInfoEntity, type TAccountBankInfoUpdate, type TAccountBankInfoUpdateRes, type TAccountChangeHashedPin, type TAccountChangePassword, type TAccountEnterOTPForgotHashedPin, type TAccountEnterOTPForgotHashedPinRes, type TAccountEntity, type TAccountFollow, type TAccountForgotHashedPinRes, type TAccountHashedPin, type TAccountPublicCheckUsernameExist, type TAccountPublicCheckUsernameExistRes, type TAccountPublicDetailRes, type TAccountPublicListFollowerRes, type TAccountPublicListFollowingRes, type TAccountPublicListSitemap, type TAccountPublicListSitemapRes, type TAccountPublicPreviewRes, type TAccountVerifyPin, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, type TBankEntity, type TBankPublicList, type TBankPublicListRes, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TCategoryEntity, type TCategoryInternalAddKeywords, type TCategoryInternalAddKeywordsRes, type TCategoryInternalAddSubject, type TCategoryInternalAddSubjectRes, type TCategoryInternalCreate, type TCategoryInternalCreateRes, type TCategoryInternalDeleteRes, type TCategoryInternalList, type TCategoryInternalListKeywordBySubjectRes, type TCategoryInternalListRes, type TCategoryInternalUpdate, type TCategoryInternalUpdateRes, type TCategoryPublicListKeyword, type TCategoryPublicListKeywordRes, type TCategoryPublicListSubjectRes, type TCategoryPublicTreeRes, type TCertificationEntity, type TChangeForgotHashedPin, type TChatConversationLastActive, type TChatConversationLastActiveRes, type TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, type TChatTotalUnseenRes, type TChatTyping, type TClassCancel, type TClassCancelRes, type TClassCountStatus, type TClassCountStatusRes, type TClassCreateByRequestTutor, type TClassCreateByRequestTutorRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStatistic, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, type TClassRoomCreate, type TClassRoomCreateRes, type TClassRoomEntity, type TClassSelectOptions, type TClassSelectOptionsRes, type TClassStatisticGroupByClass, type TClassStatisticGroupByClassRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByClass, type TClassStudentStatisticGroupByClassRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TConversationEntity, type TConversationMessageEntity, type TConversationParticipantsEntity, type TDayOfWeekEntity, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteMultiple, type TDocumentFolderCreate, type TDocumentFolderCreateRes, type TDocumentFolderEntity, type TDocumentFolderImport, type TDocumentFolderImportRes, type TDocumentFolderListRes, type TDocumentFolderTreeListRes, type TDocumentFolderUpdate, type TDocumentFolderUpdateRes, type TDocumentGetByDocuments, type TDocumentGetByDocumentsRes, type TDocumentImport, type TDocumentList, type TDocumentListRes, type TDocumentMove, type TDocumentMoveRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, TEACHING_TIME_RANGE, type TEditorDeleteRes, type TEditorDetailRes, type TEditorEntity, type TEditorStudentDetailRes, type TEditorUpdate, type TEditorUpdateRes, type TExtendLessonTimesDTO, type TFileDeleteRes, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUpdate, type TFileLessonUpdateRes, type TFileLessonUpload, type TFileLessonUploadRes, type TFileUpdate, type TFileUpdateRes, type TFileUploadCommonRes, type TGroupQuestionChangeAnswerQuestionType, type TGroupQuestionChangeAnswerQuestionTypeRes, type TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultHistories, type TGroupQuestionResultHistoriesRes, type TGroupQuestionResultRes, type TGroupQuestionSendComment, type TGroupQuestionSendCommentRes, type TGroupQuestionSendFeedback, type TGroupQuestionSendFeedbackRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultHistories, type TGroupQuestionStudentResultHistoriesRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type THistoryLoginEntity, TIMEOUT_SECONDS_MEETING, type TInternalAccountEntity, type TInternalAccountList, type TInternalAccountListRes, type TInternalAccountLogin, type TInternalAccountLoginRes, type TInternalAccountNew, type TInternalAccountNewRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonClassRoomEntity, type TLessonConfirm, type TLessonConfirmRes, type TLessonCreateEditor, type TLessonCreateEditorRes, type TLessonCreateGroupQuestion, type TLessonCreateGroupQuestionRes, type TLessonDetailRes, type TLessonDocumentsRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonImport, type TLessonImportRes, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStatistic, type TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TLessonStudentUncompletedDocumentsRes, type TLessonUncompletedDocumentsRes, type TMeetingEntity, type TMeetingJoinRes, type TMeetingJoiningAccountsRes, type TMeetingLessonDetailRes, type TMeetingParticipantEntity, type TMeetingParticipantsRes, type TMeetingStartRes, type TMessageEntity, type TMessageSeenEntity, type TNotificationEntity, type TPostAllComment, type TPostAllCommentDeleteRes, type TPostAllCommentRes, type TPostAllCommentUpdate, type TPostAllCommentUpdateRes, type TPostAllCreateDiscussion, type TPostAllCreateDiscussionRes, type TPostAllListPostByAccount, type TPostAllListPostByAccountRes, type TPostAllMyPost, type TPostAllMyPostRes, type TPostAllRemoveUpvote, type TPostAllReplyComment, type TPostAllReplyCommentRes, type TPostAllShareDocument, type TPostAllShareDocumentRes, type TPostAllUpdateDiscussion, type TPostAllUpdateDiscussionRes, type TPostAllUpdateShareDocument, type TPostAllUpdateShareDocumentRes, type TPostAllUpload, type TPostAllUploadRes, type TPostCommentEntity, type TPostDocumentEntity, type TPostDocumentPublicEditorDetailRes, type TPostDocumentPublicGroupQuestionDetailRes, type TPostEntity, type TPostPublicDetailRes, type TPostPublicListComment, type TPostPublicListCommentRes, type TPostPublicListSiteMap, type TPostPublicListSiteMapRes, type TPostPublicNewFeeds, type TPostPublicNewFeedsRes, type TPostStatistic, type TProgramEntity, type TProgramInternalCrete, type TProgramInternalList, type TProgramInternalListRes, type TProgramInternalUpdate, type TProgramInternalUpdateRes, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramPublicDetailRes, type TProgramPublicLearnedProgram, type TProgramPublicLearnedProgramRes, type TProgramPublicList, type TProgramPublicListRes, type TProgramPublicListSitemap, type TProgramPublicListSitemapRes, type TProgramPublicRecommended, type TProgramPublicRecommendedRes, type TProgramRatingEntity, type TProgramRatingPublicCountByScore, type TProgramRatingPublicCountByScoreRes, type TProgramRatingPublicList, type TProgramRatingPublicListRes, type TProgramRatingStudentCanRate, type TProgramRatingStudentCanRateRes, type TProgramRatingStudentCreateRating, type TProgramRatingStudentCreateRatingRes, type TProgramRatingStudentDeleteRatingRes, type TProgramRatingStudentHasRated, type TProgramRatingStudentHasRatedRes, type TProgramRatingStudentUpdateRating, type TProgramRatingStudentUpdateRatingRes, type TProgramRatingUpload, type TProgramRatingUploadRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedCategoryEntity, type TProposedCategoryInternalListKeywords, type TProposedCategoryInternalListKeywordsRes, type TProposedCategoryInternalListSubjectKeywords, type TProposedCategoryInternalListSubjectKeywordsRes, 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 TQuestionEntity, type TQuestionTypeChoiceEntity, type TQuestionTypeEssayEntity, type TQuestionTypeWordArrangementEntity, TRANSACTION_FEE, TRANSACTION_GATEWAY, TRANSACTION_STATUS, TRANSACTION_TYPE, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreate, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramDetailRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TRegisteredProgramPublicCreate, type TRegisteredProgramPublicCreateRes, type TRegisteredProgramStudentUpdate, type TRegisteredProgramStudentUpdateRes, type TRequestTutorFormCreate, type TRequestTutorFormCreateRes, type TRequestTutorFormEntity, type TRequestTutorFormGetByCodeRes, type TRequestTutorFormInternalAssignTutor, type TRequestTutorFormInternalAssignTutorRes, type TRequestTutorFormInternalCancel, type TRequestTutorFormInternalCancelRes, type TRequestTutorFormInternalCountStatusRes, type TRequestTutorFormInternalList, type TRequestTutorFormInternalListRes, type TRequestTutorFormList, type TRequestTutorFormListRes, type TSessionGroupQuestionEntity, type TSessionGroupQuestionStatistic, type TStudent, type TStudentDocumentChangeOrder, type TStudentDocumentChangeOrderRes, type TStudentDocumentCreateEditor, type TStudentDocumentCreateEditorRes, type TStudentDocumentCreateGroupQuestion, type TStudentDocumentCreateGroupQuestionRes, type TStudentDocumentDeleteMultiple, type TStudentDocumentEntity, type TStudentDocumentEntityRes, type TStudentDocumentFolderCreate, type TStudentDocumentFolderCreateRes, type TStudentDocumentFolderDeleteRes, type TStudentDocumentFolderEntity, type TStudentDocumentFolderImport, type TStudentDocumentFolderImportRes, type TStudentDocumentFolderListRes, type TStudentDocumentFolderUpdate, type TStudentDocumentFolderUpdateRes, type TStudentDocumentGetByDocuments, type TStudentDocumentGetByDocumentsRes, type TStudentDocumentImport, type TStudentDocumentList, type TStudentDocumentListRes, type TStudentDocumentMove, type TStudentDocumentMoveRes, type TStudentDocumentUpload, type TStudentDocumentUploadRes, type TStudentEntity, type TStudentUpdateInterested, type TStudentUpdateInterestedRes, type TSubjectEntity, type TSubmitGroupQuestion, type TTeachingTimeRangeEntity, type TTransactionAllList, type TTransactionAllListRes, type TTransactionEntity, type TTutorAddCertification, type TTutorAddCertificationRes, type TTutorCertificationCertificationRes, type TTutorDeleteCertificationRes, type TTutorDetailCertificationRes, type TTutorEntity, type TTutorInternalCertificationVerify, type TTutorInternalCertificationVerifyRes, type TTutorInternalDetailRes, type TTutorInternalList, type TTutorInternalListRes, type TTutorInternalOptions, type TTutorInternalOptionsRes, type TTutorInternalVerify, type TTutorInternalVerifyRes, type TTutorListCertificationsRes, type TTutorListStudents, type TTutorListStudentsRes, type TTutorPublicList, type TTutorPublicListRes, type TTutorSubmitIdentify, type TTutorSubmitIdentifyRes, type TTutorUpdateCertification, type TTutorUpdateCertificationRes, type TUploadCreateUploadUrl, type TUploadCreateUploadUrlRes, type TWalletEntity, type TWalletInfoRes, type TWithDrawRequestInternalGetOrCreateTransaction, type TWithDrawRequestInternalGetOrCreateTransactionRes, type TWithDrawRequestInternalList, type TWithDrawRequestInternalListRes, type TWithdrawRequestAdd, type TWithdrawRequestAddRes, type TWithdrawRequestCancel, type TWithdrawRequestCancelRes, type TWithdrawRequestCurrentWithdrawRes, type TWithdrawRequestEntity, type TWithdrawRequestList, type TWithdrawRequestListRes, URL_CLASS_DETAIL, WITHDRAW_REQUEST_STATUS };
|
|
3192
|
+
export { ACCEPTED_AUDIO_TYPES, ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, ACCOUNT_STATUS, ANSWER_QUESTION_TYPE, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BaseInternalEntity, type BasePaginationParams, type BaseResponse, CATEGORY_STATUS, CERTIFICATION_STATUS, CHECK_INTERVAL_MEETING, CLASS_INHERITANCE_TYPE, CLASS_ROOM_STATUS, CLASS_STATUS, CLASS_STATUS_CANCELED_REASON, CLASS_STATUS_CANCELED_REASON_STUDENT, CLASS_STATUS_CANCELED_REASON_TUTOR, CLASS_STATUS_ORDER, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CONVERSATION_TYPE, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, HASHED_PIN_LENGTH, INTERNAL_ROLE, LESSON_ACTIVITY_STATUS, LESSON_ATTENDANCE_STATUS, LESSON_FEE_RATE, LESSON_INHERITANCE_TYPE, LIMIT_HOURS_JOIN_MEETING, MAX_DOCUMENT_FOLDER, MAX_KEYWORD_PROGRAM, MAX_PROGRAM_TUITION_FEE, MAX_STUDENT_CLASS_ROOM, MAX_STUDENT_DOCUMENT_FOLDER, MESSAGE_TYPE, MISSING_TRANSACTION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_ACCOUNT_STATUS, OBJECT_ANSWER_QUESTION_TYPE, OBJECT_CERTIFICATION_STATUS, OBJECT_CLASS_ROOM_STATUS, OBJECT_CLASS_STATUS, OBJECT_CLASS_STATUS_CANCELED_REASON, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_LESSON_ATTENDANCE_STATUS, OBJECT_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_PROGRAM_TYPE, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_REQUEST_TUTOR_FORM_STATUS, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJECT_STUDENT_IN_CLASS_ROOM_STATUS, OBJECT_TEACHING_TIME_RANGE, OBJECT_TRANSACTION_STATUS, OBJECT_TRANSACTION_TYPE, OBJECT_WITHDRAW_REQUEST_STATUS, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, PROGRAM_TYPE, PROPOSED_CATEGORY_STATUS, PROPOSED_LEARNING_PAYMENT_STATUS, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_MODE, REGISTER_PROGRAM_TIME, REQUEST_TUTOR_FORM_STATUS, RTC_ROLES, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, STUDENT_IN_CLASS_ROOM_STATUS, type TAccountAvailableTimeEntity, type TAccountBankInfoCreate, type TAccountBankInfoCreateRes, type TAccountBankInfoCurrentRes, type TAccountBankInfoEntity, type TAccountBankInfoUpdate, type TAccountBankInfoUpdateRes, type TAccountChangeHashedPin, type TAccountChangePassword, type TAccountEnterOTPForgotHashedPin, type TAccountEnterOTPForgotHashedPinRes, type TAccountEntity, type TAccountFollow, type TAccountForgotHashedPinRes, type TAccountHashedPin, type TAccountPublicCheckUsernameExist, type TAccountPublicCheckUsernameExistRes, type TAccountPublicDetailRes, type TAccountPublicListFollowerRes, type TAccountPublicListFollowingRes, type TAccountPublicListSitemap, type TAccountPublicListSitemapRes, type TAccountPublicPreviewRes, type TAccountVerifyPin, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, type TBankEntity, type TBankPublicList, type TBankPublicListRes, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TCategoryEntity, type TCategoryInternalAddKeywords, type TCategoryInternalAddKeywordsRes, type TCategoryInternalAddSubject, type TCategoryInternalAddSubjectRes, type TCategoryInternalCreate, type TCategoryInternalCreateRes, type TCategoryInternalDeleteRes, type TCategoryInternalList, type TCategoryInternalListKeywordBySubjectRes, type TCategoryInternalListRes, type TCategoryInternalUpdate, type TCategoryInternalUpdateRes, type TCategoryPublicListKeyword, type TCategoryPublicListKeywordRes, type TCategoryPublicListSubjectRes, type TCategoryPublicTreeRes, type TCertificationEntity, type TChangeForgotHashedPin, type TChatConversationLastActive, type TChatConversationLastActiveRes, type TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, type TChatTotalUnseenRes, type TChatTyping, type TClassCancel, type TClassCancelRes, type TClassCountStatus, type TClassCountStatusRes, type TClassCreateByRequestTutor, type TClassCreateByRequestTutorRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStatistic, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, type TClassRoomCreate, type TClassRoomCreateRes, type TClassRoomEntity, type TClassSelectOptions, type TClassSelectOptionsRes, type TClassStatisticGroupByClass, type TClassStatisticGroupByClassRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByClass, type TClassStudentStatisticGroupByClassRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TConversationEntity, type TConversationMessageEntity, type TConversationParticipantsEntity, type TDayOfWeekEntity, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteMultiple, type TDocumentFolderCreate, type TDocumentFolderCreateRes, type TDocumentFolderEntity, type TDocumentFolderImport, type TDocumentFolderImportRes, type TDocumentFolderListRes, type TDocumentFolderTreeListRes, type TDocumentFolderUpdate, type TDocumentFolderUpdateRes, type TDocumentGetByDocuments, type TDocumentGetByDocumentsRes, type TDocumentImport, type TDocumentList, type TDocumentListRes, type TDocumentMove, type TDocumentMoveRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, TEACHING_TIME_RANGE, TEACHING_VIDEO_STATUS, type TEditorDeleteRes, type TEditorDetailRes, type TEditorEntity, type TEditorStudentDetailRes, type TEditorUpdate, type TEditorUpdateRes, type TExtendLessonTimesDTO, type TFileDeleteRes, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUpdate, type TFileLessonUpdateRes, type TFileLessonUpload, type TFileLessonUploadRes, type TFileUpdate, type TFileUpdateRes, type TFileUploadCommonRes, type TGroupQuestionChangeAnswerQuestionType, type TGroupQuestionChangeAnswerQuestionTypeRes, type TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultHistories, type TGroupQuestionResultHistoriesRes, type TGroupQuestionResultRes, type TGroupQuestionSendComment, type TGroupQuestionSendCommentRes, type TGroupQuestionSendFeedback, type TGroupQuestionSendFeedbackRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultHistories, type TGroupQuestionStudentResultHistoriesRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type THistoryLoginEntity, TIMEOUT_SECONDS_MEETING, type TInternalAccountEntity, type TInternalAccountList, type TInternalAccountListRes, type TInternalAccountLogin, type TInternalAccountLoginRes, type TInternalAccountNew, type TInternalAccountNewRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonClassRoomEntity, type TLessonConfirm, type TLessonConfirmRes, type TLessonCreateEditor, type TLessonCreateEditorRes, type TLessonCreateGroupQuestion, type TLessonCreateGroupQuestionRes, type TLessonDetailRes, type TLessonDocumentsRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonImport, type TLessonImportRes, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStatistic, type TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TLessonStudentUncompletedDocumentsRes, type TLessonUncompletedDocumentsRes, type TMeetingEntity, type TMeetingJoinRes, type TMeetingJoiningAccountsRes, type TMeetingLessonDetailRes, type TMeetingParticipantEntity, type TMeetingParticipantsRes, type TMeetingStartRes, type TMessageEntity, type TMessageSeenEntity, type TNotificationEntity, type TPostAllComment, type TPostAllCommentDeleteRes, type TPostAllCommentRes, type TPostAllCommentUpdate, type TPostAllCommentUpdateRes, type TPostAllCreateDiscussion, type TPostAllCreateDiscussionRes, type TPostAllListPostByAccount, type TPostAllListPostByAccountRes, type TPostAllMyPost, type TPostAllMyPostRes, type TPostAllRemoveUpvote, type TPostAllReplyComment, type TPostAllReplyCommentRes, type TPostAllShareDocument, type TPostAllShareDocumentRes, type TPostAllUpdateDiscussion, type TPostAllUpdateDiscussionRes, type TPostAllUpdateShareDocument, type TPostAllUpdateShareDocumentRes, type TPostAllUpload, type TPostAllUploadRes, type TPostCommentEntity, type TPostDocumentEntity, type TPostDocumentPublicEditorDetailRes, type TPostDocumentPublicGroupQuestionDetailRes, type TPostEntity, type TPostPublicDetailRes, type TPostPublicListComment, type TPostPublicListCommentRes, type TPostPublicListSiteMap, type TPostPublicListSiteMapRes, type TPostPublicNewFeeds, type TPostPublicNewFeedsRes, type TPostStatistic, type TProgramEntity, type TProgramInternalCrete, type TProgramInternalList, type TProgramInternalListRes, type TProgramInternalUpdate, type TProgramInternalUpdateRes, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramPublicDetailRes, type TProgramPublicLearnedProgram, type TProgramPublicLearnedProgramRes, type TProgramPublicList, type TProgramPublicListRes, type TProgramPublicListSitemap, type TProgramPublicListSitemapRes, type TProgramPublicRecommended, type TProgramPublicRecommendedRes, type TProgramRatingEntity, type TProgramRatingPublicCountByScore, type TProgramRatingPublicCountByScoreRes, type TProgramRatingPublicList, type TProgramRatingPublicListRes, type TProgramRatingStudentCanRate, type TProgramRatingStudentCanRateRes, type TProgramRatingStudentCreateRating, type TProgramRatingStudentCreateRatingRes, type TProgramRatingStudentDeleteRatingRes, type TProgramRatingStudentHasRated, type TProgramRatingStudentHasRatedRes, type TProgramRatingStudentUpdateRating, type TProgramRatingStudentUpdateRatingRes, type TProgramRatingUpload, type TProgramRatingUploadRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedCategoryEntity, type TProposedCategoryInternalListKeywords, type TProposedCategoryInternalListKeywordsRes, type TProposedCategoryInternalListSubjectKeywords, type TProposedCategoryInternalListSubjectKeywordsRes, 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 TQuestionEntity, type TQuestionTypeChoiceEntity, type TQuestionTypeEssayEntity, type TQuestionTypeWordArrangementEntity, TRANSACTION_FEE, TRANSACTION_GATEWAY, TRANSACTION_STATUS, TRANSACTION_TYPE, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreate, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramDetailRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TRegisteredProgramPublicCreate, type TRegisteredProgramPublicCreateRes, type TRegisteredProgramStudentUpdate, type TRegisteredProgramStudentUpdateRes, type TRequestTutorFormCreate, type TRequestTutorFormCreateRes, type TRequestTutorFormEntity, type TRequestTutorFormGetByCodeRes, type TRequestTutorFormInternalAssignTutor, type TRequestTutorFormInternalAssignTutorRes, type TRequestTutorFormInternalCancel, type TRequestTutorFormInternalCancelRes, type TRequestTutorFormInternalCountStatusRes, type TRequestTutorFormInternalList, type TRequestTutorFormInternalListRes, type TRequestTutorFormList, type TRequestTutorFormListRes, type TSessionGroupQuestionEntity, type TSessionGroupQuestionStatistic, type TStudent, type TStudentDocumentChangeOrder, type TStudentDocumentChangeOrderRes, type TStudentDocumentCreateEditor, type TStudentDocumentCreateEditorRes, type TStudentDocumentCreateGroupQuestion, type TStudentDocumentCreateGroupQuestionRes, type TStudentDocumentDeleteMultiple, type TStudentDocumentEntity, type TStudentDocumentEntityRes, type TStudentDocumentFolderCreate, type TStudentDocumentFolderCreateRes, type TStudentDocumentFolderDeleteRes, type TStudentDocumentFolderEntity, type TStudentDocumentFolderImport, type TStudentDocumentFolderImportRes, type TStudentDocumentFolderListRes, type TStudentDocumentFolderUpdate, type TStudentDocumentFolderUpdateRes, type TStudentDocumentGetByDocuments, type TStudentDocumentGetByDocumentsRes, type TStudentDocumentImport, type TStudentDocumentList, type TStudentDocumentListRes, type TStudentDocumentMove, type TStudentDocumentMoveRes, type TStudentDocumentUpload, type TStudentDocumentUploadRes, type TStudentEntity, type TStudentUpdateInterested, type TStudentUpdateInterestedRes, type TSubjectEntity, type TSubmitGroupQuestion, type TTeachingTimeRangeEntity, type TTeachingVideoEntity, type TTransactionAllList, type TTransactionAllListRes, type TTransactionEntity, type TTutorAddCertification, type TTutorAddCertificationRes, type TTutorCertificationCertificationRes, type TTutorDeleteCertificationRes, type TTutorDetailCertificationRes, type TTutorEntity, type TTutorInternalCertificationVerify, type TTutorInternalCertificationVerifyRes, type TTutorInternalDetailRes, type TTutorInternalList, type TTutorInternalListRes, type TTutorInternalOptions, type TTutorInternalOptionsRes, type TTutorInternalVerify, type TTutorInternalVerifyRes, type TTutorListCertificationsRes, type TTutorListStudents, type TTutorListStudentsRes, type TTutorPublicList, type TTutorPublicListRes, type TTutorSubmitIdentify, type TTutorSubmitIdentifyRes, type TTutorUpdateCertification, type TTutorUpdateCertificationRes, type TUploadCreateUploadUrl, type TUploadCreateUploadUrlRes, type TWalletEntity, type TWalletInfoRes, type TWithDrawRequestInternalGetOrCreateTransaction, type TWithDrawRequestInternalGetOrCreateTransactionRes, type TWithDrawRequestInternalList, type TWithDrawRequestInternalListRes, type TWithdrawRequestAdd, type TWithdrawRequestAddRes, type TWithdrawRequestCancel, type TWithdrawRequestCancelRes, type TWithdrawRequestCurrentWithdrawRes, type TWithdrawRequestEntity, type TWithdrawRequestList, type TWithdrawRequestListRes, URL_CLASS_DETAIL, WITHDRAW_REQUEST_STATUS };
|
package/dist/index.mjs
CHANGED
|
@@ -289,6 +289,12 @@ var MESSAGE_TYPE = /* @__PURE__ */ ((MESSAGE_TYPE2) => {
|
|
|
289
289
|
MESSAGE_TYPE2["IMAGE"] = "IMAGE";
|
|
290
290
|
MESSAGE_TYPE2["VIDEO"] = "VIDEO";
|
|
291
291
|
MESSAGE_TYPE2["AUDIO"] = "AUDIO";
|
|
292
|
+
MESSAGE_TYPE2["CLASS_INVITATION"] = "CLASS_INVITATION";
|
|
293
|
+
MESSAGE_TYPE2["CLASS_CANCELED"] = "CLASS_CANCELED";
|
|
294
|
+
MESSAGE_TYPE2["CLASS_CONFIRM"] = "CLASS_CONFIRM";
|
|
295
|
+
MESSAGE_TYPE2["TRAIL_LESSON_INVITATION"] = "TRAIL_LESSON_INVITATION";
|
|
296
|
+
MESSAGE_TYPE2["TRAIL_LESSON_CONFIRM"] = "TRAIL_LESSON_CONFIRM";
|
|
297
|
+
MESSAGE_TYPE2["TRAIL_LESSON_CANCELED"] = "TRAIL_LESSON_CANCELED";
|
|
292
298
|
return MESSAGE_TYPE2;
|
|
293
299
|
})(MESSAGE_TYPE || {});
|
|
294
300
|
var CONVERSATION_TYPE = /* @__PURE__ */ ((CONVERSATION_TYPE2) => {
|
|
@@ -296,6 +302,11 @@ var CONVERSATION_TYPE = /* @__PURE__ */ ((CONVERSATION_TYPE2) => {
|
|
|
296
302
|
CONVERSATION_TYPE2["GROUP"] = "GROUP";
|
|
297
303
|
return CONVERSATION_TYPE2;
|
|
298
304
|
})(CONVERSATION_TYPE || {});
|
|
305
|
+
var TEACHING_VIDEO_STATUS = /* @__PURE__ */ ((TEACHING_VIDEO_STATUS2) => {
|
|
306
|
+
TEACHING_VIDEO_STATUS2["VERIFIED"] = "VERIFIED";
|
|
307
|
+
TEACHING_VIDEO_STATUS2["WAIT_FOR_VERIFY"] = "WAIT_FOR_VERIFY";
|
|
308
|
+
return TEACHING_VIDEO_STATUS2;
|
|
309
|
+
})(TEACHING_VIDEO_STATUS || {});
|
|
299
310
|
|
|
300
311
|
// src/constant.ts
|
|
301
312
|
var OTP_RESEND_TIME = 60;
|
|
@@ -979,6 +990,7 @@ export {
|
|
|
979
990
|
SORT_TYPE,
|
|
980
991
|
STUDENT_IN_CLASS_ROOM_STATUS,
|
|
981
992
|
TEACHING_TIME_RANGE,
|
|
993
|
+
TEACHING_VIDEO_STATUS,
|
|
982
994
|
TIMEOUT_SECONDS_MEETING,
|
|
983
995
|
TRANSACTION_FEE,
|
|
984
996
|
TRANSACTION_GATEWAY,
|