gst-common 1.3.18 → 1.3.20
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 +24 -0
- package/dist/index.d.cts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.mjs +22 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -37,6 +37,7 @@ __export(index_exports, {
|
|
|
37
37
|
OBJECT_LESSON_ACTIVITY_STATUS: () => OBJECT_LESSON_ACTIVITY_STATUS,
|
|
38
38
|
OBJECT_PROGRAM_METHOD: () => OBJECT_PROGRAM_METHOD,
|
|
39
39
|
OBJECT_PROGRAM_SUITABLE_LEARNER: () => OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
40
|
+
OBJECT_QUESTION_TYPES: () => OBJECT_QUESTION_TYPES,
|
|
40
41
|
OBJECT_REGISTERED_PROGRAM_STATUS: () => OBJECT_REGISTERED_PROGRAM_STATUS,
|
|
41
42
|
OBJECT_REGISTER_METHOD: () => OBJECT_REGISTER_METHOD,
|
|
42
43
|
OBJECT_SCHOOL_STATUS: () => OBJECT_SCHOOL_STATUS,
|
|
@@ -45,6 +46,7 @@ __export(index_exports, {
|
|
|
45
46
|
OTP_RESEND_TIME: () => OTP_RESEND_TIME,
|
|
46
47
|
PROGRAM_METHOD: () => PROGRAM_METHOD,
|
|
47
48
|
PROGRAM_SUITABLE_LEARNER: () => PROGRAM_SUITABLE_LEARNER,
|
|
49
|
+
QUESTION_TYPES: () => QUESTION_TYPES,
|
|
48
50
|
REFRESH_TYPE: () => REFRESH_TYPE,
|
|
49
51
|
REGISTERED_PROGRAM_STATUS: () => REGISTERED_PROGRAM_STATUS,
|
|
50
52
|
REGISTER_METHOD: () => REGISTER_METHOD,
|
|
@@ -175,6 +177,12 @@ var DAY_OF_WEEK = /* @__PURE__ */ ((DAY_OF_WEEK2) => {
|
|
|
175
177
|
DAY_OF_WEEK2["SUNDAY"] = "SUNDAY";
|
|
176
178
|
return DAY_OF_WEEK2;
|
|
177
179
|
})(DAY_OF_WEEK || {});
|
|
180
|
+
var QUESTION_TYPES = /* @__PURE__ */ ((QUESTION_TYPES2) => {
|
|
181
|
+
QUESTION_TYPES2["CHOICES"] = "CHOICES";
|
|
182
|
+
QUESTION_TYPES2["ESSAY"] = "ESSAY";
|
|
183
|
+
QUESTION_TYPES2["WORD_ARRANGEMENT"] = "WORD_ARRANGEMENT";
|
|
184
|
+
return QUESTION_TYPES2;
|
|
185
|
+
})(QUESTION_TYPES || {});
|
|
178
186
|
|
|
179
187
|
// src/object-enum.ts
|
|
180
188
|
var OBJECT_REGISTER_METHOD = {
|
|
@@ -389,6 +397,20 @@ var OBJECT_LESSON_ACTIVITY_STATUS = {
|
|
|
389
397
|
label: "\u0110\xE3 hu\u1EF7"
|
|
390
398
|
}
|
|
391
399
|
};
|
|
400
|
+
var OBJECT_QUESTION_TYPES = {
|
|
401
|
+
["CHOICES" /* CHOICES */]: {
|
|
402
|
+
value: "CHOICES" /* CHOICES */,
|
|
403
|
+
label: "Tr\u1EAFc nghi\u1EC7m"
|
|
404
|
+
},
|
|
405
|
+
["ESSAY" /* ESSAY */]: {
|
|
406
|
+
value: "ESSAY" /* ESSAY */,
|
|
407
|
+
label: "T\u1EF1 lu\u1EADn"
|
|
408
|
+
},
|
|
409
|
+
["WORD_ARRANGEMENT" /* WORD_ARRANGEMENT */]: {
|
|
410
|
+
value: "WORD_ARRANGEMENT" /* WORD_ARRANGEMENT */,
|
|
411
|
+
label: "S\u1EAFp x\u1EBFp t\u1EEB"
|
|
412
|
+
}
|
|
413
|
+
};
|
|
392
414
|
// Annotate the CommonJS export names for ESM import in node:
|
|
393
415
|
0 && (module.exports = {
|
|
394
416
|
CLASS_STATUS,
|
|
@@ -408,6 +430,7 @@ var OBJECT_LESSON_ACTIVITY_STATUS = {
|
|
|
408
430
|
OBJECT_LESSON_ACTIVITY_STATUS,
|
|
409
431
|
OBJECT_PROGRAM_METHOD,
|
|
410
432
|
OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
433
|
+
OBJECT_QUESTION_TYPES,
|
|
411
434
|
OBJECT_REGISTERED_PROGRAM_STATUS,
|
|
412
435
|
OBJECT_REGISTER_METHOD,
|
|
413
436
|
OBJECT_SCHOOL_STATUS,
|
|
@@ -416,6 +439,7 @@ var OBJECT_LESSON_ACTIVITY_STATUS = {
|
|
|
416
439
|
OTP_RESEND_TIME,
|
|
417
440
|
PROGRAM_METHOD,
|
|
418
441
|
PROGRAM_SUITABLE_LEARNER,
|
|
442
|
+
QUESTION_TYPES,
|
|
419
443
|
REFRESH_TYPE,
|
|
420
444
|
REGISTERED_PROGRAM_STATUS,
|
|
421
445
|
REGISTER_METHOD,
|
package/dist/index.d.cts
CHANGED
|
@@ -118,6 +118,11 @@ declare enum DAY_OF_WEEK {
|
|
|
118
118
|
SATURDAY = "SATURDAY",
|
|
119
119
|
SUNDAY = "SUNDAY"
|
|
120
120
|
}
|
|
121
|
+
declare enum QUESTION_TYPES {
|
|
122
|
+
CHOICES = "CHOICES",
|
|
123
|
+
ESSAY = "ESSAY",
|
|
124
|
+
WORD_ARRANGEMENT = "WORD_ARRANGEMENT"
|
|
125
|
+
}
|
|
121
126
|
|
|
122
127
|
type TProgramSuitableLearnerEntity = {
|
|
123
128
|
suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
|
|
@@ -292,7 +297,9 @@ type TFileLessonEntity = {
|
|
|
292
297
|
name: string;
|
|
293
298
|
size: number;
|
|
294
299
|
} & BaseEntity;
|
|
295
|
-
type TDocumentsEntity = {
|
|
300
|
+
type TDocumentsEntity = {
|
|
301
|
+
order: number;
|
|
302
|
+
} & BaseEntity;
|
|
296
303
|
type TFileEntity = {
|
|
297
304
|
url: string;
|
|
298
305
|
name: string;
|
|
@@ -511,6 +518,20 @@ declare const OBJECT_LESSON_ACTIVITY_STATUS: {
|
|
|
511
518
|
label: string;
|
|
512
519
|
};
|
|
513
520
|
};
|
|
521
|
+
declare const OBJECT_QUESTION_TYPES: {
|
|
522
|
+
CHOICES: {
|
|
523
|
+
value: QUESTION_TYPES;
|
|
524
|
+
label: string;
|
|
525
|
+
};
|
|
526
|
+
ESSAY: {
|
|
527
|
+
value: QUESTION_TYPES;
|
|
528
|
+
label: string;
|
|
529
|
+
};
|
|
530
|
+
WORD_ARRANGEMENT: {
|
|
531
|
+
value: QUESTION_TYPES;
|
|
532
|
+
label: string;
|
|
533
|
+
};
|
|
534
|
+
};
|
|
514
535
|
|
|
515
536
|
type TRegisteredProgramCreatePost = {
|
|
516
537
|
studentNote?: string;
|
|
@@ -672,6 +693,13 @@ type TDocumentList = {
|
|
|
672
693
|
search?: string;
|
|
673
694
|
programId?: string;
|
|
674
695
|
} & BasePaginationParams;
|
|
696
|
+
type TDocumentChangeOrder = {
|
|
697
|
+
programId: string;
|
|
698
|
+
documents: {
|
|
699
|
+
documentId: string;
|
|
700
|
+
order: number;
|
|
701
|
+
}[];
|
|
702
|
+
};
|
|
675
703
|
|
|
676
704
|
type TProgramRegisteredMeTutorEdit = {
|
|
677
705
|
id: string;
|
|
@@ -1007,5 +1035,6 @@ type TDocumentProgramListRes = {
|
|
|
1007
1035
|
totalFile: number;
|
|
1008
1036
|
totalSize: number;
|
|
1009
1037
|
}[];
|
|
1038
|
+
type TDocumentChangeOrderRes = TDocumentsEntity[];
|
|
1010
1039
|
|
|
1011
|
-
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, type TExtendLessonTimesDTO, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUploadRes, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonDetailRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
1040
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_QUESTION_TYPES, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, type TExtendLessonTimesDTO, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUploadRes, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonDetailRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,11 @@ declare enum DAY_OF_WEEK {
|
|
|
118
118
|
SATURDAY = "SATURDAY",
|
|
119
119
|
SUNDAY = "SUNDAY"
|
|
120
120
|
}
|
|
121
|
+
declare enum QUESTION_TYPES {
|
|
122
|
+
CHOICES = "CHOICES",
|
|
123
|
+
ESSAY = "ESSAY",
|
|
124
|
+
WORD_ARRANGEMENT = "WORD_ARRANGEMENT"
|
|
125
|
+
}
|
|
121
126
|
|
|
122
127
|
type TProgramSuitableLearnerEntity = {
|
|
123
128
|
suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
|
|
@@ -292,7 +297,9 @@ type TFileLessonEntity = {
|
|
|
292
297
|
name: string;
|
|
293
298
|
size: number;
|
|
294
299
|
} & BaseEntity;
|
|
295
|
-
type TDocumentsEntity = {
|
|
300
|
+
type TDocumentsEntity = {
|
|
301
|
+
order: number;
|
|
302
|
+
} & BaseEntity;
|
|
296
303
|
type TFileEntity = {
|
|
297
304
|
url: string;
|
|
298
305
|
name: string;
|
|
@@ -511,6 +518,20 @@ declare const OBJECT_LESSON_ACTIVITY_STATUS: {
|
|
|
511
518
|
label: string;
|
|
512
519
|
};
|
|
513
520
|
};
|
|
521
|
+
declare const OBJECT_QUESTION_TYPES: {
|
|
522
|
+
CHOICES: {
|
|
523
|
+
value: QUESTION_TYPES;
|
|
524
|
+
label: string;
|
|
525
|
+
};
|
|
526
|
+
ESSAY: {
|
|
527
|
+
value: QUESTION_TYPES;
|
|
528
|
+
label: string;
|
|
529
|
+
};
|
|
530
|
+
WORD_ARRANGEMENT: {
|
|
531
|
+
value: QUESTION_TYPES;
|
|
532
|
+
label: string;
|
|
533
|
+
};
|
|
534
|
+
};
|
|
514
535
|
|
|
515
536
|
type TRegisteredProgramCreatePost = {
|
|
516
537
|
studentNote?: string;
|
|
@@ -672,6 +693,13 @@ type TDocumentList = {
|
|
|
672
693
|
search?: string;
|
|
673
694
|
programId?: string;
|
|
674
695
|
} & BasePaginationParams;
|
|
696
|
+
type TDocumentChangeOrder = {
|
|
697
|
+
programId: string;
|
|
698
|
+
documents: {
|
|
699
|
+
documentId: string;
|
|
700
|
+
order: number;
|
|
701
|
+
}[];
|
|
702
|
+
};
|
|
675
703
|
|
|
676
704
|
type TProgramRegisteredMeTutorEdit = {
|
|
677
705
|
id: string;
|
|
@@ -1007,5 +1035,6 @@ type TDocumentProgramListRes = {
|
|
|
1007
1035
|
totalFile: number;
|
|
1008
1036
|
totalSize: number;
|
|
1009
1037
|
}[];
|
|
1038
|
+
type TDocumentChangeOrderRes = TDocumentsEntity[];
|
|
1010
1039
|
|
|
1011
|
-
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, type TExtendLessonTimesDTO, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUploadRes, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonDetailRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
|
1040
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseEntity, type BasePaginationParams, type BaseResponse, CLASS_STATUS, CLASS_STATUS_STUDENT_EDIT, CLASS_STATUS_TUTOR_EDIT, COMMON_ROUTES, CUSTOMER_TYPE, type ClassLearningTimeDTO, type DATA_THIRD_PARTY_LOGIN, DAY_OF_WEEK, GENDER, LESSON_ACTIVITY_STATUS, NOTIFICATION_STATUS, NOTIFICATION_TYPE, OBJECT_CLASS_STATUS, OBJECT_CUSTOMER_TYPE, OBJECT_DAY_OF_WEEK, OBJECT_GENDER, OBJECT_LESSON_ACTIVITY_STATUS, OBJECT_PROGRAM_METHOD, OBJECT_PROGRAM_SUITABLE_LEARNER, OBJECT_QUESTION_TYPES, OBJECT_REGISTERED_PROGRAM_STATUS, OBJECT_REGISTER_METHOD, OBJECT_SCHOOL_STATUS, OBJECT_SORT_TYPE, OBJ_SESSION_PER_WEEK, OTP_RESEND_TIME, PROGRAM_METHOD, PROGRAM_SUITABLE_LEARNER, QUESTION_TYPES, REFRESH_TYPE, REGISTERED_PROGRAM_STATUS, REGISTER_METHOD, REGISTER_PROGRAM_TIME, ResponseStatus, SCHOOL_STATUS, SORT_TYPE, type TAccountEntity, type TAdministrativeRegionEntity, type TAdministrativeUnitEntity, type TCLassStatistic, type TCLassStatisticRes, type TCLassStudentStatistic, type TCLassStudentStatisticRes, type TClassCountStatus, type TClassCountStatusRes, type TClassEntity, type TClassLearningTimeEntity, type TClassMeCreate, type TClassMeCreateRes, type TClassMeDetail, type TClassMeDetailRes, type TClassMeList, type TClassMeListRes, type TClassNotificationCreate, type TClassNotificationCreateRes, type TClassNotificationEntity, type TClassNotificationList, type TClassNotificationListRes, type TClassNotificationStudentList, type TClassNotificationStudentListRes, type TClassNotificationUpdate, type TClassNotificationUpdateRes, type TClassSelectOptionsRes, type TClassStatisticGroupByMonth, type TClassStatisticGroupByMonthRes, type TClassStudentChangeStatus, type TClassStudentChangeStatusRes, type TClassStudentCountStatus, type TClassStudentCountStatusRes, type TClassStudentDetailRes, type TClassStudentList, type TClassStudentListRes, type TClassStudentSelectOptionsRes, type TClassStudentStatisticGroupByMonth, type TClassStudentStatisticGroupByMonthRes, type TClassUpdate, type TClassUpdateRes, type TCompletedAndNotPaidLessonsRes, type TDeletableLessonsRes, type TDeleteDeletableLessonsRes, type TDistrictEntity, type TDocumentChangeOrder, type TDocumentChangeOrderRes, type TDocumentDeleteFileRes, type TDocumentList, type TDocumentListRes, type TDocumentProgramListRes, type TDocumentUpload, type TDocumentUploadRes, type TDocumentsEntity, type TExtendLessonTimesDTO, type TFileEntity, type TFileLessonEntity, type TFileLessonListRes, type TFileLessonStudentListRes, type TFileLessonUploadRes, type TLesson, type TLessonCheckOverlap, type TLessonCheckOverlapRes, type TLessonConfirm, type TLessonConfirmRes, type TLessonDetailRes, type TLessonEdit, type TLessonEditRes, type TLessonEntity, type TLessonListMeTutor, type TLessonListMeTutorRes, type TLessonListUnconfirmedRes, type TLessonPrepare, type TLessonPrepareRes, type TLessonRequest, type TLessonRequestDTO, type TLessonRequestFailedOverlappedData, type TLessonRequestRes, type TLessonRequestSingle, type TLessonRequestSingleRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentList, type TLessonStudentListRes, type TNotificationEntity, type TProgramEntity, type TProgramOptionsMe, type TProgramOptionsMeRes, type TProgramRegisteredMeTutorEdit, type TProgramRegisteredMeTutorEditRes, type TProgramStudentCheckAllowRegister, type TProgramSuitableLearnerEntity, type TProposedLearningCreate, type TProposedLearningCreateRes, type TProposedLearningDetail, type TProposedLearningDetailRes, type TProposedLearningEdit, type TProposedLearningEditRes, type TProposedLearningEntity, type TProposedLearningLessonEntity, type TProposedLearningList, type TProposedLearningListRes, type TProposedLearningStudentDetail, type TProposedLearningStudentDetailRes, type TProposedLearningStudentList, type TProposedLearningStudentListRes, type TProvinceEntity, type TRegisteredProgramCountStatus, type TRegisteredProgramCountStatusRes, type TRegisteredProgramCreatePost, type TRegisteredProgramCreateRes, type TRegisteredProgramEntity, type TRegisteredProgramListSentMeDTO, type TRegisteredProgramListSentMeRes, type TStudent, type TStudentEntity, type TTutorEntity, type TTutorListStudents, type TTutorListStudentsRes };
|
package/dist/index.mjs
CHANGED
|
@@ -118,6 +118,12 @@ var DAY_OF_WEEK = /* @__PURE__ */ ((DAY_OF_WEEK2) => {
|
|
|
118
118
|
DAY_OF_WEEK2["SUNDAY"] = "SUNDAY";
|
|
119
119
|
return DAY_OF_WEEK2;
|
|
120
120
|
})(DAY_OF_WEEK || {});
|
|
121
|
+
var QUESTION_TYPES = /* @__PURE__ */ ((QUESTION_TYPES2) => {
|
|
122
|
+
QUESTION_TYPES2["CHOICES"] = "CHOICES";
|
|
123
|
+
QUESTION_TYPES2["ESSAY"] = "ESSAY";
|
|
124
|
+
QUESTION_TYPES2["WORD_ARRANGEMENT"] = "WORD_ARRANGEMENT";
|
|
125
|
+
return QUESTION_TYPES2;
|
|
126
|
+
})(QUESTION_TYPES || {});
|
|
121
127
|
|
|
122
128
|
// src/object-enum.ts
|
|
123
129
|
var OBJECT_REGISTER_METHOD = {
|
|
@@ -332,6 +338,20 @@ var OBJECT_LESSON_ACTIVITY_STATUS = {
|
|
|
332
338
|
label: "\u0110\xE3 hu\u1EF7"
|
|
333
339
|
}
|
|
334
340
|
};
|
|
341
|
+
var OBJECT_QUESTION_TYPES = {
|
|
342
|
+
["CHOICES" /* CHOICES */]: {
|
|
343
|
+
value: "CHOICES" /* CHOICES */,
|
|
344
|
+
label: "Tr\u1EAFc nghi\u1EC7m"
|
|
345
|
+
},
|
|
346
|
+
["ESSAY" /* ESSAY */]: {
|
|
347
|
+
value: "ESSAY" /* ESSAY */,
|
|
348
|
+
label: "T\u1EF1 lu\u1EADn"
|
|
349
|
+
},
|
|
350
|
+
["WORD_ARRANGEMENT" /* WORD_ARRANGEMENT */]: {
|
|
351
|
+
value: "WORD_ARRANGEMENT" /* WORD_ARRANGEMENT */,
|
|
352
|
+
label: "S\u1EAFp x\u1EBFp t\u1EEB"
|
|
353
|
+
}
|
|
354
|
+
};
|
|
335
355
|
export {
|
|
336
356
|
CLASS_STATUS,
|
|
337
357
|
CLASS_STATUS_STUDENT_EDIT,
|
|
@@ -350,6 +370,7 @@ export {
|
|
|
350
370
|
OBJECT_LESSON_ACTIVITY_STATUS,
|
|
351
371
|
OBJECT_PROGRAM_METHOD,
|
|
352
372
|
OBJECT_PROGRAM_SUITABLE_LEARNER,
|
|
373
|
+
OBJECT_QUESTION_TYPES,
|
|
353
374
|
OBJECT_REGISTERED_PROGRAM_STATUS,
|
|
354
375
|
OBJECT_REGISTER_METHOD,
|
|
355
376
|
OBJECT_SCHOOL_STATUS,
|
|
@@ -358,6 +379,7 @@ export {
|
|
|
358
379
|
OTP_RESEND_TIME,
|
|
359
380
|
PROGRAM_METHOD,
|
|
360
381
|
PROGRAM_SUITABLE_LEARNER,
|
|
382
|
+
QUESTION_TYPES,
|
|
361
383
|
REFRESH_TYPE,
|
|
362
384
|
REGISTERED_PROGRAM_STATUS,
|
|
363
385
|
REGISTER_METHOD,
|