gst-common 1.3.96 → 1.3.98
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 +19 -0
- package/dist/index.d.cts +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.mjs +17 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -39,6 +39,7 @@ __export(index_exports, {
|
|
|
39
39
|
OBJECT_DAY_OF_WEEK: () => OBJECT_DAY_OF_WEEK,
|
|
40
40
|
OBJECT_GENDER: () => OBJECT_GENDER,
|
|
41
41
|
OBJECT_LESSON_ACTIVITY_STATUS: () => OBJECT_LESSON_ACTIVITY_STATUS,
|
|
42
|
+
OBJECT_POST_TYPE: () => OBJECT_POST_TYPE,
|
|
42
43
|
OBJECT_PROGRAM_METHOD: () => OBJECT_PROGRAM_METHOD,
|
|
43
44
|
OBJECT_PROGRAM_SUITABLE_LEARNER: () => OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
44
45
|
OBJECT_QUESTION_TYPES: () => OBJECT_QUESTION_TYPES,
|
|
@@ -49,6 +50,7 @@ __export(index_exports, {
|
|
|
49
50
|
OBJECT_SORT_TYPE: () => OBJECT_SORT_TYPE,
|
|
50
51
|
OBJ_SESSION_PER_WEEK: () => OBJ_SESSION_PER_WEEK,
|
|
51
52
|
OTP_RESEND_TIME: () => OTP_RESEND_TIME,
|
|
53
|
+
POST_TYPE: () => POST_TYPE,
|
|
52
54
|
PROGRAM_DETAIL_TABS: () => PROGRAM_DETAIL_TABS,
|
|
53
55
|
PROGRAM_METHOD: () => PROGRAM_METHOD,
|
|
54
56
|
PROGRAM_SUITABLE_LEARNER: () => PROGRAM_SUITABLE_LEARNER,
|
|
@@ -226,6 +228,11 @@ var PROGRAM_DETAIL_TABS = /* @__PURE__ */ ((PROGRAM_DETAIL_TABS2) => {
|
|
|
226
228
|
PROGRAM_DETAIL_TABS2["RATING"] = "RATING";
|
|
227
229
|
return PROGRAM_DETAIL_TABS2;
|
|
228
230
|
})(PROGRAM_DETAIL_TABS || {});
|
|
231
|
+
var POST_TYPE = /* @__PURE__ */ ((POST_TYPE2) => {
|
|
232
|
+
POST_TYPE2["DOCUMENT_SHARE"] = "DOCUMENT_SHARE";
|
|
233
|
+
POST_TYPE2["DISCUSSION"] = "DISCUSSION";
|
|
234
|
+
return POST_TYPE2;
|
|
235
|
+
})(POST_TYPE || {});
|
|
229
236
|
|
|
230
237
|
// src/object-enum.ts
|
|
231
238
|
var OBJECT_REGISTER_METHOD = {
|
|
@@ -476,6 +483,16 @@ var OBJECT_RATING = {
|
|
|
476
483
|
label: "Xu\u1EA5t x\u1EAFc"
|
|
477
484
|
}
|
|
478
485
|
};
|
|
486
|
+
var OBJECT_POST_TYPE = {
|
|
487
|
+
["DOCUMENT_SHARE" /* DOCUMENT_SHARE */]: {
|
|
488
|
+
value: "DOCUMENT_SHARE" /* DOCUMENT_SHARE */,
|
|
489
|
+
label: "Chia s\u1EBB t\xE0i li\u1EC7u"
|
|
490
|
+
},
|
|
491
|
+
["DISCUSSION" /* DISCUSSION */]: {
|
|
492
|
+
value: "DISCUSSION" /* DISCUSSION */,
|
|
493
|
+
label: "B\xE0i th\u1EA3o lu\u1EADn"
|
|
494
|
+
}
|
|
495
|
+
};
|
|
479
496
|
// Annotate the CommonJS export names for ESM import in node:
|
|
480
497
|
0 && (module.exports = {
|
|
481
498
|
ACCEPTED_IMAGE_TYPES,
|
|
@@ -497,6 +514,7 @@ var OBJECT_RATING = {
|
|
|
497
514
|
OBJECT_DAY_OF_WEEK,
|
|
498
515
|
OBJECT_GENDER,
|
|
499
516
|
OBJECT_LESSON_ACTIVITY_STATUS,
|
|
517
|
+
OBJECT_POST_TYPE,
|
|
500
518
|
OBJECT_PROGRAM_METHOD,
|
|
501
519
|
OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
502
520
|
OBJECT_QUESTION_TYPES,
|
|
@@ -507,6 +525,7 @@ var OBJECT_RATING = {
|
|
|
507
525
|
OBJECT_SORT_TYPE,
|
|
508
526
|
OBJ_SESSION_PER_WEEK,
|
|
509
527
|
OTP_RESEND_TIME,
|
|
528
|
+
POST_TYPE,
|
|
510
529
|
PROGRAM_DETAIL_TABS,
|
|
511
530
|
PROGRAM_METHOD,
|
|
512
531
|
PROGRAM_SUITABLE_LEARNER,
|
package/dist/index.d.cts
CHANGED
|
@@ -221,6 +221,14 @@ type TProgramRatingEntity = {
|
|
|
221
221
|
score: number;
|
|
222
222
|
comment: string;
|
|
223
223
|
} & BaseEntity;
|
|
224
|
+
type TPostEntity = {
|
|
225
|
+
title: string;
|
|
226
|
+
content?: string;
|
|
227
|
+
type: POST_TYPE;
|
|
228
|
+
} & BaseEntity;
|
|
229
|
+
type TCommentEntity = {
|
|
230
|
+
content: string;
|
|
231
|
+
} & BaseEntity;
|
|
224
232
|
|
|
225
233
|
declare enum CUSTOMER_TYPE {
|
|
226
234
|
TUTOR = "tutor",
|
|
@@ -345,6 +353,10 @@ declare enum PROGRAM_DETAIL_TABS {
|
|
|
345
353
|
INTRODUCTION = "INTRODUCTION",
|
|
346
354
|
RATING = "RATING"
|
|
347
355
|
}
|
|
356
|
+
declare enum POST_TYPE {
|
|
357
|
+
DOCUMENT_SHARE = "DOCUMENT_SHARE",
|
|
358
|
+
DISCUSSION = "DISCUSSION"
|
|
359
|
+
}
|
|
348
360
|
|
|
349
361
|
declare const OTP_RESEND_TIME = 20;
|
|
350
362
|
declare const COMMON_ROUTES: {
|
|
@@ -609,6 +621,16 @@ declare const OBJECT_RATING: {
|
|
|
609
621
|
label: string;
|
|
610
622
|
};
|
|
611
623
|
};
|
|
624
|
+
declare const OBJECT_POST_TYPE: {
|
|
625
|
+
DOCUMENT_SHARE: {
|
|
626
|
+
value: POST_TYPE;
|
|
627
|
+
label: string;
|
|
628
|
+
};
|
|
629
|
+
DISCUSSION: {
|
|
630
|
+
value: POST_TYPE;
|
|
631
|
+
label: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
612
634
|
|
|
613
635
|
type TRegisteredProgramCreatePost = {
|
|
614
636
|
studentNote?: string;
|
|
@@ -903,6 +925,14 @@ type TProgramRatingStudentHasRated = {
|
|
|
903
925
|
type TProgramRatingStudentCanRate = {
|
|
904
926
|
programId?: string;
|
|
905
927
|
};
|
|
928
|
+
type TPostCreateDiscussion = {
|
|
929
|
+
title: string;
|
|
930
|
+
content?: string;
|
|
931
|
+
fileIds?: string[];
|
|
932
|
+
};
|
|
933
|
+
type TPostUpload = {
|
|
934
|
+
name: string;
|
|
935
|
+
};
|
|
906
936
|
|
|
907
937
|
type TProgramRegisteredMeTutorEdit = {
|
|
908
938
|
id: string;
|
|
@@ -1465,5 +1495,7 @@ type TProgramRatingStudentHasRatedRes = (TProgramRatingEntity & {
|
|
|
1465
1495
|
type TProgramRatingStudentCanRateRes = (TClassEntity & {
|
|
1466
1496
|
program: TProgramEntity;
|
|
1467
1497
|
})[];
|
|
1498
|
+
type TPostCreateDiscussionRes = TPostEntity;
|
|
1499
|
+
type TPostUploadRes = TFileEntity;
|
|
1468
1500
|
|
|
1469
|
-
export { ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, 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_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, 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 TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, 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 TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteEditorRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, 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 TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRatingEntity, 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 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, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TSessionGroupQuestionEntity, type TStudent, type TStudentEntity, type TSubmitGroupQuestion, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
1501
|
+
export { ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, 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_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, 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 TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, 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 TCommentEntity, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteEditorRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, 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 TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TPostCreateDiscussion, type TPostCreateDiscussionRes, type TPostEntity, type TPostUpload, type TPostUploadRes, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRatingEntity, 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 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, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TSessionGroupQuestionEntity, type TStudent, type TStudentEntity, type TSubmitGroupQuestion, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,14 @@ type TProgramRatingEntity = {
|
|
|
221
221
|
score: number;
|
|
222
222
|
comment: string;
|
|
223
223
|
} & BaseEntity;
|
|
224
|
+
type TPostEntity = {
|
|
225
|
+
title: string;
|
|
226
|
+
content?: string;
|
|
227
|
+
type: POST_TYPE;
|
|
228
|
+
} & BaseEntity;
|
|
229
|
+
type TCommentEntity = {
|
|
230
|
+
content: string;
|
|
231
|
+
} & BaseEntity;
|
|
224
232
|
|
|
225
233
|
declare enum CUSTOMER_TYPE {
|
|
226
234
|
TUTOR = "tutor",
|
|
@@ -345,6 +353,10 @@ declare enum PROGRAM_DETAIL_TABS {
|
|
|
345
353
|
INTRODUCTION = "INTRODUCTION",
|
|
346
354
|
RATING = "RATING"
|
|
347
355
|
}
|
|
356
|
+
declare enum POST_TYPE {
|
|
357
|
+
DOCUMENT_SHARE = "DOCUMENT_SHARE",
|
|
358
|
+
DISCUSSION = "DISCUSSION"
|
|
359
|
+
}
|
|
348
360
|
|
|
349
361
|
declare const OTP_RESEND_TIME = 20;
|
|
350
362
|
declare const COMMON_ROUTES: {
|
|
@@ -609,6 +621,16 @@ declare const OBJECT_RATING: {
|
|
|
609
621
|
label: string;
|
|
610
622
|
};
|
|
611
623
|
};
|
|
624
|
+
declare const OBJECT_POST_TYPE: {
|
|
625
|
+
DOCUMENT_SHARE: {
|
|
626
|
+
value: POST_TYPE;
|
|
627
|
+
label: string;
|
|
628
|
+
};
|
|
629
|
+
DISCUSSION: {
|
|
630
|
+
value: POST_TYPE;
|
|
631
|
+
label: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
612
634
|
|
|
613
635
|
type TRegisteredProgramCreatePost = {
|
|
614
636
|
studentNote?: string;
|
|
@@ -903,6 +925,14 @@ type TProgramRatingStudentHasRated = {
|
|
|
903
925
|
type TProgramRatingStudentCanRate = {
|
|
904
926
|
programId?: string;
|
|
905
927
|
};
|
|
928
|
+
type TPostCreateDiscussion = {
|
|
929
|
+
title: string;
|
|
930
|
+
content?: string;
|
|
931
|
+
fileIds?: string[];
|
|
932
|
+
};
|
|
933
|
+
type TPostUpload = {
|
|
934
|
+
name: string;
|
|
935
|
+
};
|
|
906
936
|
|
|
907
937
|
type TProgramRegisteredMeTutorEdit = {
|
|
908
938
|
id: string;
|
|
@@ -1465,5 +1495,7 @@ type TProgramRatingStudentHasRatedRes = (TProgramRatingEntity & {
|
|
|
1465
1495
|
type TProgramRatingStudentCanRateRes = (TClassEntity & {
|
|
1466
1496
|
program: TProgramEntity;
|
|
1467
1497
|
})[];
|
|
1498
|
+
type TPostCreateDiscussionRes = TPostEntity;
|
|
1499
|
+
type TPostUploadRes = TFileEntity;
|
|
1468
1500
|
|
|
1469
|
-
export { ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, 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_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, 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 TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, 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 TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteEditorRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, 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 TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRatingEntity, 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 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, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TSessionGroupQuestionEntity, type TStudent, type TStudentEntity, type TSubmitGroupQuestion, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
1501
|
+
export { ACCEPTED_IMAGE_TYPES, ACCEPTED_VIDEO_TYPES, AT_LEAST_ALLOW_RATING_PROGRAM_HOUR, AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS, 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_POST_TYPE, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_QUESTION_TYPES, OBJECT_RATING, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, POST_TYPE, PROGRAM_DETAIL_TABS, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SESSION_GROUP_QUESTION, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TAnswerChoiceEntity, type TAnswerQuestionEntity, type TAnswerWordArrangementEntity, 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 TClassNotificationAddGroupQuestion, type TClassNotificationAddGroupQuestionRes, type TClassNotificationCreate, type TClassNotificationCreateEditor, type TClassNotificationCreateEditorRes, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationImport, type TClassNotificationImportRes, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassNotificationUpload, type TClassNotificationUploadRes, 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 TCommentEntity, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentCreateEditor, type TDocumentCreateEditorRes, type TDocumentCreateGroupQuestion, type TDocumentCreateGroupQuestionRes, type TDocumentDeleteEditorRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, 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 TGroupQuestionCreate, type TGroupQuestionCreateRes, type TGroupQuestionDeleteGroupQuestion, type TGroupQuestionDetailRes, type TGroupQuestionEntity, type TGroupQuestionResultRes, type TGroupQuestionStudentDraft, type TGroupQuestionStudentDraftRes, type TGroupQuestionStudentFinishDoing, type TGroupQuestionStudentLessonFinishDoingRes, type TGroupQuestionStudentResultRes, type TGroupQuestionStudentStartDoingRes, type TGroupQuestionUpdate, type TGroupQuestionUpdateRes, type TLesson, type TLessonAllDocuments, type TLessonAllDocumentsRes, type TLessonCheckOverlap, type TLessonCheckOverlapRes, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TPostCreateDiscussion, type TPostCreateDiscussionRes, type TPostEntity, type TPostUpload, type TPostUploadRes, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRatingEntity, 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 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, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TSessionGroupQuestionEntity, type TStudent, type TStudentEntity, type TSubmitGroupQuestion, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
package/dist/index.mjs
CHANGED
|
@@ -160,6 +160,11 @@ var PROGRAM_DETAIL_TABS = /* @__PURE__ */ ((PROGRAM_DETAIL_TABS2) => {
|
|
|
160
160
|
PROGRAM_DETAIL_TABS2["RATING"] = "RATING";
|
|
161
161
|
return PROGRAM_DETAIL_TABS2;
|
|
162
162
|
})(PROGRAM_DETAIL_TABS || {});
|
|
163
|
+
var POST_TYPE = /* @__PURE__ */ ((POST_TYPE2) => {
|
|
164
|
+
POST_TYPE2["DOCUMENT_SHARE"] = "DOCUMENT_SHARE";
|
|
165
|
+
POST_TYPE2["DISCUSSION"] = "DISCUSSION";
|
|
166
|
+
return POST_TYPE2;
|
|
167
|
+
})(POST_TYPE || {});
|
|
163
168
|
|
|
164
169
|
// src/object-enum.ts
|
|
165
170
|
var OBJECT_REGISTER_METHOD = {
|
|
@@ -410,6 +415,16 @@ var OBJECT_RATING = {
|
|
|
410
415
|
label: "Xu\u1EA5t x\u1EAFc"
|
|
411
416
|
}
|
|
412
417
|
};
|
|
418
|
+
var OBJECT_POST_TYPE = {
|
|
419
|
+
["DOCUMENT_SHARE" /* DOCUMENT_SHARE */]: {
|
|
420
|
+
value: "DOCUMENT_SHARE" /* DOCUMENT_SHARE */,
|
|
421
|
+
label: "Chia s\u1EBB t\xE0i li\u1EC7u"
|
|
422
|
+
},
|
|
423
|
+
["DISCUSSION" /* DISCUSSION */]: {
|
|
424
|
+
value: "DISCUSSION" /* DISCUSSION */,
|
|
425
|
+
label: "B\xE0i th\u1EA3o lu\u1EADn"
|
|
426
|
+
}
|
|
427
|
+
};
|
|
413
428
|
export {
|
|
414
429
|
ACCEPTED_IMAGE_TYPES,
|
|
415
430
|
ACCEPTED_VIDEO_TYPES,
|
|
@@ -430,6 +445,7 @@ export {
|
|
|
430
445
|
OBJECT_DAY_OF_WEEK,
|
|
431
446
|
OBJECT_GENDER,
|
|
432
447
|
OBJECT_LESSON_ACTIVITY_STATUS,
|
|
448
|
+
OBJECT_POST_TYPE,
|
|
433
449
|
OBJECT_PROGRAM_METHOD,
|
|
434
450
|
OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
435
451
|
OBJECT_QUESTION_TYPES,
|
|
@@ -440,6 +456,7 @@ export {
|
|
|
440
456
|
OBJECT_SORT_TYPE,
|
|
441
457
|
OBJ_SESSION_PER_WEEK,
|
|
442
458
|
OTP_RESEND_TIME,
|
|
459
|
+
POST_TYPE,
|
|
443
460
|
PROGRAM_DETAIL_TABS,
|
|
444
461
|
PROGRAM_METHOD,
|
|
445
462
|
PROGRAM_SUITABLE_LEARNER,
|