gst-common 1.7.34 → 1.7.36

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.
Files changed (3) hide show
  1. package/dist/index.d.cts +1085 -1061
  2. package/dist/index.d.ts +1085 -1061
  3. package/package.json +1 -1
package/dist/index.d.cts CHANGED
@@ -1,1226 +1,1236 @@
1
- type TProgramSuitableLearnerEntity = {
2
- suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
3
- program: TProgramEntity;
4
- } & BaseEntity;
5
- type TProgramEntity = {
6
- thumbnail: string;
7
- name: string;
8
- shortDescription: string;
9
- detailDescription: string;
10
- fromPrice: number;
11
- toPrice: number;
12
- account: TAccountEntity;
13
- method: PROGRAM_METHOD;
14
- durationPerSession: number;
15
- fullName: string;
16
- mode: REGISTER_PROGRAM_MODE;
17
- } & BaseEntity;
18
- type TStudentEntity = {
19
- district: TDistrictEntity | null | null;
20
- province: TProvinceEntity | null | null;
21
- birthDay: string | null;
22
- hiddenBirthDay: boolean;
23
- phoneNumber: string | null | null;
24
- hiddenPhoneNumber: boolean;
25
- account: TAccountEntity;
26
- expectedFee: number | null;
27
- totalHourLearning: number;
28
- studyMethod: PROGRAM_METHOD | null;
29
- jobDescription: string | null;
30
- introduction: string | null;
31
- isZaloPhoneNumber: boolean | null;
32
- learningDayOfWeeks: TDayOfWeekEntity[];
33
- studyTimeRange: TTeachingTimeRangeEntity[];
34
- subjectInterested: TCategoryEntity[];
35
- keywordInterested: (TCategoryEntity & {
36
- parent: TCategoryEntity;
37
- })[];
38
- } & BaseEntity;
39
- type TAccountEntity = {
40
- id: string;
41
- fullname: string;
42
- avatar: string | null;
43
- type: CUSTOMER_TYPE | null;
44
- registerMethod: REGISTER_METHOD;
45
- status: ACCOUNT_STATUS;
46
- pendingAt: Date;
47
- completedAt: Date;
48
- rejectReason: string;
49
- backIDCard: string;
50
- frontIDCard: string;
51
- introductionVideo: string;
52
- completedInternalAccount: TInternalAccountEntity | null;
53
- password: string | null;
54
- username: string;
55
- keyForgot: string | null;
56
- providerId: string | null;
57
- updatedAt: Date;
58
- createdAt: Date;
59
- deletedAt: Date | null;
60
- tutor: TTutorEntity | null | null;
61
- student: TStudentEntity | null | null;
62
- birthDay: string | null;
63
- hiddenBirthDay: boolean;
64
- phoneNumber: string | null;
65
- hiddenPhoneNumber: boolean;
66
- hashedPin: string | null;
1
+ declare const OBJECT_REGISTER_METHOD: {
2
+ email: {
3
+ value: REGISTER_METHOD;
4
+ label: string;
5
+ };
6
+ google: {
7
+ value: REGISTER_METHOD;
8
+ label: string;
9
+ };
67
10
  };
68
- type TAdministrativeRegionEntity = {
69
- id: number;
70
- name: string;
71
- nameEn: string;
72
- codeName: string | null;
73
- codeNameEn: string | null;
11
+ declare const OBJECT_CUSTOMER_TYPE: {
12
+ student: {
13
+ value: CUSTOMER_TYPE;
14
+ label: string;
15
+ };
16
+ tutor: {
17
+ value: CUSTOMER_TYPE;
18
+ label: string;
19
+ };
74
20
  };
75
- type TAdministrativeUnitEntity = {
76
- id: number;
77
- fullName: string | null;
78
- fullNameEn: string | null;
79
- shortName: string | null;
80
- shortNameEn: string | null;
81
- codeName: string | null;
82
- codeNameEn: string | null;
21
+ declare const OBJECT_PROGRAM_SUITABLE_LEARNER: {
22
+ pre_school: {
23
+ value: PROGRAM_SUITABLE_LEARNER;
24
+ label: string;
25
+ };
26
+ primary_student: {
27
+ value: PROGRAM_SUITABLE_LEARNER;
28
+ label: string;
29
+ };
30
+ secondary_student: {
31
+ value: PROGRAM_SUITABLE_LEARNER;
32
+ label: string;
33
+ };
34
+ hight_school_student: {
35
+ value: PROGRAM_SUITABLE_LEARNER;
36
+ label: string;
37
+ };
38
+ university_student: {
39
+ value: PROGRAM_SUITABLE_LEARNER;
40
+ label: string;
41
+ };
42
+ working_people: {
43
+ value: PROGRAM_SUITABLE_LEARNER;
44
+ label: string;
45
+ };
83
46
  };
84
- type TProvinceEntity = {
85
- code: string;
86
- name: string;
87
- nameEn: string | null;
88
- fullName: string;
89
- fullNameEn: string | null;
90
- codeName: string | null;
91
- administrativeRegion: TAdministrativeRegionEntity;
92
- administrativeUnit: TAdministrativeUnitEntity;
47
+ declare const OBJECT_SCHOOL_STATUS: {
48
+ CURRENT: {
49
+ value: SCHOOL_STATUS;
50
+ label: string;
51
+ };
52
+ GRADUATED: {
53
+ value: SCHOOL_STATUS;
54
+ label: string;
55
+ };
93
56
  };
94
- type TDistrictEntity = {
95
- code: string;
96
- name: string;
97
- nameEn: string | null;
98
- fullName: string | null;
99
- fullNameEn: string | null;
100
- codeName: string | null;
101
- province: TProvinceEntity;
102
- administrativeUnit: TAdministrativeUnitEntity;
57
+ declare const OBJ_SESSION_PER_WEEK: {
58
+ 1: {
59
+ label: string;
60
+ value: number;
61
+ };
62
+ 2: {
63
+ label: string;
64
+ value: number;
65
+ };
66
+ 3: {
67
+ label: string;
68
+ value: number;
69
+ };
70
+ 4: {
71
+ label: string;
72
+ value: number;
73
+ };
74
+ 5: {
75
+ label: string;
76
+ value: number;
77
+ };
78
+ 6: {
79
+ label: string;
80
+ value: number;
81
+ };
82
+ 7: {
83
+ label: string;
84
+ value: number;
85
+ };
86
+ 8: {
87
+ label: string;
88
+ value: number;
89
+ };
90
+ 9: {
91
+ label: string;
92
+ value: number;
93
+ };
94
+ 10: {
95
+ label: string;
96
+ value: number;
97
+ };
103
98
  };
104
- type TTutorEntity = {
105
- totalTeachingHours: number;
106
- totalSessions: number;
107
- introduction: string | null;
108
- shortVideoUrl: string | null;
109
- district: TDistrictEntity | null;
110
- province: TProvinceEntity | null;
111
- birthDay: string | null;
112
- phoneNumber: string | null;
113
- account: TAccountEntity;
114
- } & BaseEntity;
115
- type TStudent = {
116
- account: TAccountEntity;
117
- jobDescription: string | null;
118
- district: TDistrictEntity | null | null;
119
- province: TProvinceEntity | null | null;
120
- birthDay: string | null | null;
121
- hiddenBirthDay: boolean;
122
- totalHourLearning: number;
123
- totalProgram: number;
124
- phoneNumber: string | null | null;
125
- hiddenPhoneNumber: boolean;
126
- } & BaseEntity;
127
- type TNotificationEntity = {
128
- title: string | null;
129
- link: string | null;
130
- content: string | null;
131
- type: NOTIFICATION_TYPE;
132
- sender: TAccountEntity | null;
133
- status: NOTIFICATION_STATUS;
134
- receiver: TAccountEntity | null;
135
- } & BaseEntity;
136
- type TRegisteredProgramEntity = {
137
- status: REGISTERED_PROGRAM_STATUS;
138
- note: string | null;
139
- viaZalo: boolean;
140
- studentNote: string | null;
141
- studentPhoneNumber: string;
142
- studentProgramMethodDesired: PROGRAM_METHOD | null;
143
- studentProvince: TProvinceEntity | null;
144
- studentDistrict: TDistrictEntity | null;
145
- addressStudent: string | null;
146
- studentInterestedProgram: TProgramEntity;
147
- registeredStudent: TAccountEntity;
148
- class: TClassEntity | null;
149
- } & BaseEntity;
150
- type TClassEntity = {
151
- name: string;
152
- feePerLesson: number | null;
153
- note: string | null;
154
- status: CLASS_STATUS;
155
- classStatusCanceledReason: CLASS_STATUS_CANCELED_REASON | null;
156
- classStatusCanceledNote: string | null;
157
- cancelBy: TAccountEntity | null;
158
- program: TProgramEntity;
159
- registeredProgram: TRegisteredProgramEntity | null;
160
- student: TAccountEntity | null;
161
- tutor: TAccountEntity;
162
- learningTimes: TClassLearningTimeEntity[];
163
- } & BaseEntity;
164
- type TLessonEntity = {
165
- startTime: string;
166
- endTime: string;
167
- status: LESSON_ACTIVITY_STATUS | null;
168
- note: string;
169
- hasApproved: boolean;
170
- hasPaid: boolean;
171
- fee: number;
172
- class: TClassEntity;
173
- } & BaseEntity;
174
- type TClassLearningTimeEntity = {
175
- dayOfWeek: DAY_OF_WEEK;
176
- startTime: string;
177
- endTime: string;
178
- class: TClassEntity;
179
- } & BaseEntity;
180
- type TClassNotificationEntity = {
181
- description: string;
182
- } & BaseEntity;
183
- type TProposedLearningLessonEntity = {
184
- proposedLearningLesson: TProposedLearningEntity;
185
- lesson: TLessonEntity;
186
- } & BaseEntity;
187
- type TProposedLearningEntity = {
188
- class: TClassEntity;
189
- title: string;
190
- paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
191
- description: string | null;
192
- } & BaseEntity;
193
- type TFileLessonEntity = {
194
- url: string;
195
- name: string;
196
- size: number;
197
- } & BaseEntity;
198
- type TDocumentsEntity = {
199
- order: number;
200
- } & BaseEntity;
201
- type TPostDocumentEntity = {
202
- order: number;
203
- } & BaseEntity;
204
- type TFileEntity = {
205
- url: string;
206
- name: string;
207
- size: number;
208
- } & BaseEntity;
209
- type TGroupQuestionEntity = {
210
- title: string;
211
- content: string;
212
- totalQuestion?: number;
213
- } & BaseEntity;
214
- type TQuestionEntity = {
215
- content: string;
216
- order: number;
217
- type: QUESTION_TYPES;
218
- explainContent: string;
219
- showExplain: boolean;
220
- } & BaseEntity;
221
- type TQuestionTypeChoiceEntity = {
222
- content: string;
223
- isCorrect: boolean;
224
- } & BaseEntity;
225
- type TQuestionTypeEssayEntity = {
226
- correctAnswer: string;
227
- } & BaseEntity;
228
- type TQuestionTypeWordArrangementEntity = {
229
- content: string;
230
- sortOrder: number;
231
- correctOrder: number;
232
- } & BaseEntity;
233
- type TSessionGroupQuestionEntity = {
234
- finishedAt: string;
235
- totalQuestion: number;
236
- correctQuestion: number;
237
- status: SESSION_GROUP_QUESTION;
238
- } & BaseEntity;
239
- type TAnswerQuestionEntity = {
240
- answerText: string;
241
- commentContent: string | null;
242
- feedbackContent: string | null;
243
- } & BaseEntity;
244
- type TAnswerChoiceEntity = {} & BaseEntity;
245
- type TAnswerWordArrangementEntity = {
246
- chosenOrder: number;
247
- } & BaseEntity;
248
- type TEditorEntity = {
249
- title: string;
250
- content: string;
251
- } & BaseEntity;
252
- type TProgramRatingEntity = {
253
- score: number;
254
- comment: string;
255
- } & BaseEntity;
256
- type TPostEntity = {
257
- title: string;
258
- content?: string;
259
- type: POST_TYPE;
260
- } & BaseEntity;
261
- type TPostCommentEntity = {
262
- content: string;
263
- } & BaseEntity;
264
- type TBankEntity = {
265
- name: string;
266
- shortName: string;
267
- code: string;
268
- bin: string;
269
- logo: string;
270
- transferSupported: number;
271
- lookupSupported: number;
272
- support: number;
273
- isTransfer: number;
274
- swiftCode: string | null;
275
- } & BaseEntity;
276
- type TAccountBankInfoEntity = {
277
- bankNumber: string;
278
- receiverName: string;
279
- } & BaseEntity;
280
- type TTransactionEntity = {
281
- type: TRANSACTION_TYPE;
282
- code: string;
283
- amount: number;
284
- amountReceive: number;
285
- fee: number;
286
- serviceFee: number;
287
- status: TRANSACTION_STATUS;
288
- gateway: TRANSACTION_GATEWAY;
289
- gatewayTransactionId: string;
290
- gatewayData: Record<string, any>;
291
- completedAt: string;
292
- } & BaseEntity;
293
- type TWalletEntity = {
294
- balance: number;
295
- lockedBalance: number;
296
- } & BaseEntity;
297
- type TWithdrawRequestEntity = {
298
- amount: number;
299
- status: WITHDRAW_REQUEST_STATUS;
300
- rejectReason: string;
301
- completedAt: string;
302
- } & BaseEntity;
303
- type TInternalAccountEntity = {
304
- username: string;
305
- password: string;
306
- fullname: string;
307
- email: string;
308
- phone: string;
309
- isActive: boolean;
310
- role: INTERNAL_ROLE;
311
- } & BaseInternalEntity;
312
- type THistoryLoginEntity = {
313
- device: string;
314
- id: string;
315
- os: string;
316
- browser: string;
317
- location: string;
318
- expiredRefresh: string;
319
- };
320
- type TDocumentFolderEntity = {
321
- name: string;
322
- } & BaseEntity;
323
- type TStudentDocumentEntity = {
324
- order: number;
325
- } & BaseEntity;
326
- type TStudentDocumentFolderEntity = {
327
- name: string;
328
- } & BaseEntity;
329
- type TDayOfWeekEntity = {
330
- id: string;
331
- dayOfWeek: DAY_OF_WEEK;
332
- };
333
- type TTeachingTimeRangeEntity = {
334
- id: string;
335
- time: TEACHING_TIME_RANGE;
336
- };
337
- type TRequestTutorFormEntity = {
338
- phoneNumber: string;
339
- code: string;
340
- isZaloPhoneNumber: boolean;
341
- jobDescription: string;
342
- expectedFee: number;
343
- method: PROGRAM_METHOD;
344
- status: REQUEST_TUTOR_FORM_STATUS;
345
- note: string;
346
- learningDayOfWeeks: TDayOfWeekEntity[];
347
- studyTimeRange: TTeachingTimeRangeEntity[];
348
- address?: string;
349
- completedAt: string | null;
350
- processAt: string | null;
351
- } & BaseEntity;
352
- type TLessonClassRoomEntity = {
353
- startTime: string;
354
- endTime: string;
355
- status: LESSON_ACTIVITY_STATUS;
356
- note: string;
357
- } & BaseEntity;
358
- type TClassRoomEntity = {
359
- name: string;
360
- feePerLesson: number;
361
- status: CLASS_ROOM_STATUS;
362
- program: TProgramEntity;
363
- } & BaseEntity;
364
- type TCategoryEntity = {
365
- name: string;
366
- slug: string;
367
- status: CATEGORY_STATUS;
368
- subjectProgramCount?: number;
369
- keywordProgramCount?: number;
370
- } & BaseEntity;
371
- type TProposedCategoryEntity = {
372
- name: string;
373
- status: PROPOSED_CATEGORY_STATUS;
374
- } & BaseEntity;
375
- type TCertificationEntity = {
376
- name: string;
377
- status: CERTIFICATION_STATUS;
378
- rejectReason: string;
379
- completedAt: string;
380
- } & BaseEntity;
381
- type TConversationEntity = {
382
- type: CONVERSATION_TYPE;
383
- participants: TConversationParticipantsEntity[];
384
- } & BaseEntity;
385
- type TConversationParticipantsEntity = {
386
- account: TAccountEntity;
387
- lastSeenAt: string;
388
- lastSeenMessage: TMessageEntity;
389
- } & BaseEntity;
390
- type TConversationMessageEntity = {
391
- content: string;
392
- type: MESSAGE_TYPE;
393
- } & BaseEntity;
394
- type TMessageEntity = {
395
- type: MESSAGE_TYPE;
396
- content: string;
397
- } & BaseEntity;
398
- type TMessageSeenEntity = {
399
- id: string;
400
- createdAt: string;
401
- };
402
-
403
- declare enum CUSTOMER_TYPE {
404
- TUTOR = "tutor",
405
- STUDENT = "student"
406
- }
407
- declare enum REGISTER_METHOD {
408
- EMAIL = "email",
409
- GOOGLE = "google"
410
- }
411
- declare enum GENDER {
412
- MALE = "male",
413
- FEMALE = "female"
414
- }
415
- declare enum PROGRAM_METHOD {
416
- ONLINE = "online",
417
- OFFLINE = "offline",
418
- ONLINE_OFFLINE = "Online/Offline"
419
- }
420
- declare enum ResponseStatus {
421
- Success = "success",
422
- BadRequest = "bad_request",
423
- NotFound = "not_found",
424
- Unauthorized = "unauthorized",
425
- Forbidden = "forbidden",
426
- InternalServerError = "internal_server_error"
427
- }
428
- type BaseResponse<T = any> = {
429
- status: ResponseStatus;
430
- message: string;
431
- data: T;
432
- };
433
- type BasePaginationParams = {
434
- page?: number;
435
- limit?: number;
436
- };
437
- type BaseEntity = {
438
- id: string;
439
- createdAt: string;
440
- updatedAt: string;
441
- deletedAt: string | null;
442
- createdBy: TAccountEntity | null;
443
- updatedBy: TAccountEntity | null;
444
- };
445
- type BaseInternalEntity = {
446
- id: string;
447
- createdAt: string;
448
- updatedAt: string;
449
- deletedAt: string | null;
450
- createdBy: TInternalAccountEntity | null;
451
- updatedBy: TInternalAccountEntity | null;
452
- };
453
- type DATA_THIRD_PARTY_LOGIN = {
454
- fullname: string;
455
- providerId: string;
456
- provider: REGISTER_METHOD;
457
- avatar?: string;
458
- email: string;
459
- };
460
- declare enum PROGRAM_SUITABLE_LEARNER {
461
- PRE_SCHOOL = "pre_school",
462
- PRIMARY_STUDENT = "primary_student",
463
- SECONDARY_STUDENT = "secondary_student",
464
- HIGHT_SCHOOL_STUDENT = "hight_school_student",
465
- UNIVERSITY_STUDENT = "university_student",
466
- WORKING_PEOPLE = "working_people"
467
- }
468
- declare enum SCHOOL_STATUS {
469
- CURRENT = "CURRENT",
470
- GRADUATED = "GRADUATED"
471
- }
472
- declare enum NOTIFICATION_TYPE {
473
- STANDARD = "STANDARD",// thông báo của người dùng
474
- SYSTEM = "SYSTEM"
475
- }
476
- declare enum NOTIFICATION_STATUS {
477
- UNREAD = "UNREAD",
478
- READ = "READ"
479
- }
480
- declare enum REGISTERED_PROGRAM_STATUS {
481
- NEW = "NEW",
482
- TESTED = "TESTED",
483
- ACCEPTED = "ACCEPTED",
484
- REJECTED = "REJECTED"
485
- }
486
- declare enum REFRESH_TYPE {
487
- NOTIFICATION = "NOTIFICATION",
488
- PROPOSED_LEARNING_PAYMENT = "PROPOSED_LEARNING_PAYMENT",
489
- WITHDRAW_SUCCESS = "WITHDRAW_SUCCESS",
490
- UPDATE_LAST_SEEN = "UPDATE_LAST_SEEN",
491
- NEW_MESSAGES = "NEW_MESSAGES",
492
- TYPING_STATUS = "TYPING_STATUS"
493
- }
494
- declare enum SORT_TYPE {
495
- ASC = "ASC",
496
- DESC = "DESC"
497
- }
498
- declare enum CLASS_STATUS {
499
- WAIT_FOR_ACCEPTING = "WAIT_FOR_ACCEPTING",
500
- HAPPENING = "HAPPENING",
501
- PENDING = "PENDING",
502
- FINISHED = "FINISHED",
503
- CANCELED = "CANCELED"
504
- }
505
- declare enum CLASS_STATUS_CANCELED_REASON {
506
- STUDENT_HAS_NOT_RESPONSE = "STUDENT_HAS_NOT_RESPONSE",// của gia sư
507
- CREATE_BY_MISTAKE = "CREATE_BY_MISTAKE",// của gia sư
508
- OTHER = "OTHER",// của gia sư & học viên
509
- TUTOR_SPAM = "TUTOR_SPAM",// của học viên
510
- CHANGE_MIND = "CHANGE_MIND"
511
- }
512
- declare enum CLASS_STATUS_CANCELED_REASON_STUDENT {
513
- TUTOR_SPAM = "TUTOR_SPAM",
514
- CHANGE_MIND = "CHANGE_MIND",
515
- OTHER = "OTHER"
516
- }
517
- declare enum CLASS_STATUS_CANCELED_REASON_TUTOR {
518
- STUDENT_HAS_NOT_RESPONSE = "STUDENT_HAS_NOT_RESPONSE",
519
- CREATE_BY_MISTAKE = "CREATE_BY_MISTAKE",
520
- OTHER = "OTHER"
521
- }
522
- declare enum TEACHING_TIME_RANGE {
523
- RANGE_6_8 = "RANGE_6_8",
524
- RANGE_8_10 = "RANGE_8_10",
525
- RANGE_10_12 = "RANGE_10_12",
526
- RANGE_14_16 = "RANGE_14_16",
527
- RANGE_16_18 = "RANGE_16_18",
528
- RANGE_18_20 = "RANGE_18_20",
529
- RANGE_20_22 = "RANGE_20_22"
530
- }
531
- declare enum CLASS_STATUS_TUTOR_EDIT {
532
- HAPPENING = "HAPPENING",
533
- PENDING = "PENDING",
534
- FINISHED = "FINISHED"
535
- }
536
- declare enum CLASS_STATUS_STUDENT_EDIT {
537
- CANCELED = "CANCELED",
538
- HAPPENING = "HAPPENING"
539
- }
540
- declare enum LESSON_ACTIVITY_STATUS {
541
- NEW = "NEW",
542
- CANCELED = "CANCELED",
543
- COMPLETED = "COMPLETED"
544
- }
545
- declare enum DAY_OF_WEEK {
546
- MONDAY = "MONDAY",
547
- TUESDAY = "TUESDAY",
548
- WEDNESDAY = "WEDNESDAY",
549
- THURSDAY = "THURSDAY",
550
- FRIDAY = "FRIDAY",
551
- SATURDAY = "SATURDAY",
552
- SUNDAY = "SUNDAY"
553
- }
554
- declare enum QUESTION_TYPES {
555
- CHOICES = "CHOICES",
556
- ESSAY = "ESSAY",
557
- WORD_ARRANGEMENT = "WORD_ARRANGEMENT",
558
- SPEAKING = "SPEAKING",
559
- TEXT = "TEXT",
560
- WRITING = "WRITING"
561
- }
562
- declare enum SESSION_GROUP_QUESTION {
563
- IN_PROCESS = "IN_PROCESS",
564
- FINISHED = "FINISHED"
565
- }
566
- declare enum PROGRAM_DETAIL_TABS {
567
- INTRODUCTION = "INTRODUCTION",
568
- RATING = "RATING"
569
- }
570
- declare enum POST_TYPE {
571
- DOCUMENT_SHARE = "DOCUMENT_SHARE",
572
- DISCUSSION = "DISCUSSION"
573
- }
574
- declare enum ANSWER_QUESTION_TYPE {
575
- WAIT_FOR_GRADE = "WAIT_FOR_GRADE",
576
- RIGHT = "CORRECT",
577
- WRONG = "INCORRECT"
578
- }
579
- declare enum PROPOSED_LEARNING_PAYMENT_STATUS {
580
- PENDING = "PENDING",
581
- SUCCESS = "SUCCESS",
582
- FAILED = "FAILED"
583
- }
584
- declare enum TRANSACTION_TYPE {
585
- DEPOSIT = "DEPOSIT",
586
- WITHDRAW = "WITHDRAW",
587
- LESSON_FEE = "LESSON_FEE"
588
- }
589
- declare enum TRANSACTION_STATUS {
590
- PENDING = "PENDING",
591
- SUCCESS = "SUCCESS",
592
- FAILED = "FAILED"
593
- }
594
- declare enum TRANSACTION_GATEWAY {
595
- SEPAY = "SEPAY",
596
- MANUAL = "MANUAL"
597
- }
598
- declare enum WITHDRAW_REQUEST_STATUS {
599
- PENDING = "PENDING",
600
- APPROVED = "APPROVED",
601
- REJECTED = "REJECTED",
602
- COMBINED = "COMBINED",
603
- CANCELLED = "CANCELLED"
604
- }
605
- declare enum INTERNAL_ROLE {
606
- ADMIN = "ADMIN"
607
- }
608
- declare enum MISSING_TRANSACTION_TYPE {
609
- IN = "IN",
610
- OUT = "OUT"
611
- }
612
- declare enum REQUEST_TUTOR_FORM_STATUS {
613
- PENDING = "PENDING",
614
- PROCESS = "PROCESS",
615
- FINISHED = "FINISHED",
616
- CANCELED = "CANCELED"
617
- }
618
- type TSessionGroupQuestionStatistic = {
619
- sessionGroupQuestionId: string;
620
- totalCorrectQuestion: number;
621
- totalWaitForGradeQuestion: number;
622
- sessionGroupQuestionTotalQuestion: number;
623
- };
624
- type TClassNotificationStatistic = {
625
- id: string;
626
- isExistingInDocument: boolean;
627
- };
628
- type TPostStatistic = {
629
- id: string;
630
- totalUpvote: number;
631
- totalComments: number;
632
- totalImported: number;
633
- hasImported: boolean;
634
- hasUpvoted: boolean;
99
+ declare const OBJECT_GENDER: {
100
+ male: {
101
+ value: GENDER;
102
+ label: string;
103
+ };
104
+ female: {
105
+ value: GENDER;
106
+ label: string;
107
+ };
635
108
  };
636
- declare enum CLASS_ROOM_STATUS {
637
- ENROLLING = "enrolling",// Tuyển sinh
638
- ONGOING = "ongoing",// Đang diễn ra
639
- COMPLETED = "completed",// Kết thúc
640
- PAUSED = "paused",// Tạm dừng
641
- CANCELED = "canceled"
642
- }
643
- declare enum STUDENT_IN_CLASS_ROOM_STATUS {
644
- PENDING = "PENDING",// Chưa chấp nhập lời mời tham gia
645
- REJECTED = "REJECTED",// từ chối lời mời tham gia
646
- ACTIVE = "ACTIVE",// Hoạt động
647
- INACTIVE = "INACTIVE",// Không hoạt động
648
- SUSPENDED = "SUSPENDED"
649
- }
650
- declare enum LESSON_ATTENDANCE_STATUS {
651
- PRESENT = "PRESENT",// Có mặt
652
- ABSENT = "ABSENT",// Vắng mặt
653
- UNKNOWN = "UNKNOWN"
654
- }
655
- declare enum PROGRAM_TYPE {
656
- ONE_TO_ONE = "ONE_TO_ONE",// dạy 1-1
657
- GROUP = "GROUP"
658
- }
659
- declare enum CLASS_INHERITANCE_TYPE {
660
- ONE_TO_ONE = "ONE_TO_ONE",// lớp học 1-1
661
- ROOM = "ROOM"
662
- }
663
- declare enum LESSON_INHERITANCE_TYPE {
664
- ONE_TO_ONE = "ONE_TO_ONE",// lớp học 1-1
665
- ROOM = "ROOM"
666
- }
667
- declare enum CATEGORY_STATUS {
668
- ACTIVE = "ACTIVE",
669
- INACTIVE = "INACTIVE"
670
- }
671
- declare enum PROPOSED_CATEGORY_STATUS {
672
- PENDING = "PENDING",
673
- APPROVED = "APPROVED",
674
- REJECTED = "REJECTED"
675
- }
676
- declare enum CERTIFICATION_STATUS {
677
- PENDING = "PENDING",
678
- APPROVED = "APPROVED",
679
- REJECTED = "REJECTED"
680
- }
681
- declare enum ACCOUNT_STATUS {
682
- PENDING = "PENDING",
683
- APPROVED = "APPROVED",
684
- REJECTED = "REJECTED",
685
- NEW = "NEW"
686
- }
687
- declare enum REGISTER_PROGRAM_MODE {
688
- GUEST = "GUEST",// khách điền form
689
- AUTHENTICATED = "AUTHENTICATED"
690
- }
691
- declare enum MESSAGE_TYPE {
692
- TEXT = "TEXT",
693
- IMAGE = "IMAGE",
694
- VIDEO = "VIDEO",
695
- AUDIO = "AUDIO"
696
- }
697
- declare enum CONVERSATION_TYPE {
698
- ONE_TO_ONE = "ONE_TO_ONE",
699
- GROUP = "GROUP"
700
- }
701
-
702
- declare const OTP_RESEND_TIME = 60;
703
- declare const URL_CLASS_DETAIL = "/class-detail";
704
- declare const COMMON_ROUTES: {
705
- classList: string;
706
- profile: string;
707
- profileDetail(accountId: string): string;
708
- registeredProgram: string;
709
- studentClassList: string;
710
- wallet: string;
711
- classDetail: (id: string) => string;
712
- programDetailUrl: string;
713
- programDetail(id: string, tab: PROGRAM_DETAIL_TABS): string;
714
- classDetailReport: (classId: string, reportId: string) => string;
109
+ declare const OBJECT_PROGRAM_METHOD: {
110
+ offline: {
111
+ value: PROGRAM_METHOD;
112
+ label: string;
113
+ };
114
+ online: {
115
+ value: PROGRAM_METHOD;
116
+ label: string;
117
+ };
118
+ "Online/Offline": {
119
+ value: PROGRAM_METHOD;
120
+ label: string;
121
+ };
715
122
  };
716
- declare const REGISTER_PROGRAM_TIME: number;
717
- declare const AT_LEAST_ALLOW_RATING_PROGRAM_HOUR = 1;
718
- declare const AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS = 1;
719
- declare const ACCEPTED_IMAGE_TYPES: string[];
720
- declare const ACCEPTED_VIDEO_TYPES: string[];
721
- declare const ACCEPTED_AUDIO_TYPES: string[];
722
- declare const CLASS_STATUS_ORDER: CLASS_STATUS[];
723
- declare const TRANSACTION_FEE = 500;
724
- declare const LESSON_FEE_RATE: number;
725
- declare const HASHED_PIN_LENGTH = 5;
726
- declare const MAX_DOCUMENT_FOLDER = 20;
727
- declare const MAX_STUDENT_DOCUMENT_FOLDER = 20;
728
- declare const MAX_STUDENT_CLASS_ROOM = 7;
729
- declare const MAX_KEYWORD_PROGRAM = 5;
730
- declare const MAX_PROGRAM_TUITION_FEE = 700000;
731
-
732
- declare const OBJECT_REGISTER_METHOD: {
733
- email: {
734
- value: REGISTER_METHOD;
123
+ declare const OBJECT_REGISTERED_PROGRAM_STATUS: {
124
+ NEW: {
125
+ value: REGISTERED_PROGRAM_STATUS;
126
+ label: string;
127
+ };
128
+ TESTED: {
129
+ value: REGISTERED_PROGRAM_STATUS;
735
130
  label: string;
736
131
  };
737
- google: {
738
- value: REGISTER_METHOD;
132
+ ACCEPTED: {
133
+ value: REGISTERED_PROGRAM_STATUS;
134
+ label: string;
135
+ };
136
+ REJECTED: {
137
+ value: REGISTERED_PROGRAM_STATUS;
739
138
  label: string;
740
139
  };
741
140
  };
742
- declare const OBJECT_CUSTOMER_TYPE: {
743
- student: {
744
- value: CUSTOMER_TYPE;
141
+ declare const OBJECT_SORT_TYPE: {
142
+ ASC: {
143
+ value: SORT_TYPE;
745
144
  label: string;
746
145
  };
747
- tutor: {
748
- value: CUSTOMER_TYPE;
146
+ DESC: {
147
+ value: SORT_TYPE;
749
148
  label: string;
750
149
  };
751
150
  };
752
- declare const OBJECT_PROGRAM_SUITABLE_LEARNER: {
753
- pre_school: {
754
- value: PROGRAM_SUITABLE_LEARNER;
151
+ declare const OBJECT_CLASS_STATUS: {
152
+ WAIT_FOR_ACCEPTING: {
153
+ value: CLASS_STATUS;
755
154
  label: string;
756
155
  };
757
- primary_student: {
758
- value: PROGRAM_SUITABLE_LEARNER;
156
+ HAPPENING: {
157
+ value: CLASS_STATUS;
759
158
  label: string;
760
159
  };
761
- secondary_student: {
762
- value: PROGRAM_SUITABLE_LEARNER;
160
+ PENDING: {
161
+ value: CLASS_STATUS;
763
162
  label: string;
764
163
  };
765
- hight_school_student: {
766
- value: PROGRAM_SUITABLE_LEARNER;
164
+ FINISHED: {
165
+ value: CLASS_STATUS;
767
166
  label: string;
768
167
  };
769
- university_student: {
770
- value: PROGRAM_SUITABLE_LEARNER;
168
+ CANCELED: {
169
+ value: CLASS_STATUS;
771
170
  label: string;
772
171
  };
773
- working_people: {
774
- value: PROGRAM_SUITABLE_LEARNER;
172
+ };
173
+ declare const OBJECT_TEACHING_TIME_RANGE: Record<TEACHING_TIME_RANGE, {
174
+ value: TEACHING_TIME_RANGE;
175
+ label: string;
176
+ }>;
177
+ declare const OBJECT_DAY_OF_WEEK: {
178
+ MONDAY: {
179
+ value: DAY_OF_WEEK;
775
180
  label: string;
776
181
  };
777
- };
778
- declare const OBJECT_SCHOOL_STATUS: {
779
- CURRENT: {
780
- value: SCHOOL_STATUS;
182
+ TUESDAY: {
183
+ value: DAY_OF_WEEK;
781
184
  label: string;
782
185
  };
783
- GRADUATED: {
784
- value: SCHOOL_STATUS;
186
+ WEDNESDAY: {
187
+ value: DAY_OF_WEEK;
188
+ label: string;
189
+ };
190
+ THURSDAY: {
191
+ value: DAY_OF_WEEK;
192
+ label: string;
193
+ };
194
+ FRIDAY: {
195
+ value: DAY_OF_WEEK;
196
+ label: string;
197
+ };
198
+ SATURDAY: {
199
+ value: DAY_OF_WEEK;
200
+ label: string;
201
+ };
202
+ SUNDAY: {
203
+ value: DAY_OF_WEEK;
785
204
  label: string;
786
205
  };
787
206
  };
788
- declare const OBJ_SESSION_PER_WEEK: {
789
- 1: {
207
+ declare const OBJECT_LESSON_ACTIVITY_STATUS: {
208
+ NEW: {
209
+ value: LESSON_ACTIVITY_STATUS;
790
210
  label: string;
791
- value: number;
792
211
  };
793
- 2: {
212
+ COMPLETED: {
213
+ value: LESSON_ACTIVITY_STATUS;
794
214
  label: string;
795
- value: number;
796
215
  };
797
- 3: {
216
+ CANCELED: {
217
+ value: LESSON_ACTIVITY_STATUS;
798
218
  label: string;
799
- value: number;
800
219
  };
801
- 4: {
220
+ };
221
+ declare const OBJECT_QUESTION_TYPES: {
222
+ CHOICES: {
223
+ value: QUESTION_TYPES;
802
224
  label: string;
803
- value: number;
804
225
  };
805
- 5: {
226
+ ESSAY: {
227
+ value: QUESTION_TYPES;
806
228
  label: string;
807
- value: number;
808
229
  };
809
- 6: {
230
+ WORD_ARRANGEMENT: {
231
+ value: QUESTION_TYPES;
810
232
  label: string;
811
- value: number;
812
233
  };
813
- 7: {
234
+ SPEAKING: {
235
+ value: QUESTION_TYPES;
814
236
  label: string;
815
- value: number;
816
237
  };
817
- 8: {
238
+ WRITING: {
239
+ value: QUESTION_TYPES;
240
+ label: string;
241
+ };
242
+ TEXT: {
243
+ value: QUESTION_TYPES;
818
244
  label: string;
245
+ };
246
+ };
247
+ declare const OBJECT_RATING: {
248
+ 1: {
819
249
  value: number;
250
+ label: string;
820
251
  };
821
- 9: {
252
+ 2: {
253
+ value: number;
822
254
  label: string;
255
+ };
256
+ 3: {
823
257
  value: number;
258
+ label: string;
824
259
  };
825
- 10: {
260
+ 4: {
261
+ value: number;
826
262
  label: string;
263
+ };
264
+ 5: {
827
265
  value: number;
266
+ label: string;
828
267
  };
829
268
  };
830
- declare const OBJECT_GENDER: {
831
- male: {
832
- value: GENDER;
269
+ declare const OBJECT_POST_TYPE: {
270
+ DOCUMENT_SHARE: {
271
+ value: POST_TYPE;
833
272
  label: string;
834
273
  };
835
- female: {
836
- value: GENDER;
274
+ DISCUSSION: {
275
+ value: POST_TYPE;
837
276
  label: string;
838
277
  };
839
278
  };
840
- declare const OBJECT_PROGRAM_METHOD: {
841
- offline: {
842
- value: PROGRAM_METHOD;
279
+ declare const OBJECT_ANSWER_QUESTION_TYPE: {
280
+ CORRECT: {
281
+ value: ANSWER_QUESTION_TYPE;
843
282
  label: string;
844
283
  };
845
- online: {
846
- value: PROGRAM_METHOD;
284
+ INCORRECT: {
285
+ value: ANSWER_QUESTION_TYPE;
847
286
  label: string;
848
287
  };
849
- "Online/Offline": {
850
- value: PROGRAM_METHOD;
288
+ WAIT_FOR_GRADE: {
289
+ value: ANSWER_QUESTION_TYPE;
851
290
  label: string;
852
291
  };
853
292
  };
854
- declare const OBJECT_REGISTERED_PROGRAM_STATUS: {
855
- NEW: {
856
- value: REGISTERED_PROGRAM_STATUS;
293
+ declare const OBJECT_TRANSACTION_TYPE: {
294
+ DEPOSIT: {
295
+ value: TRANSACTION_TYPE;
857
296
  label: string;
858
297
  };
859
- TESTED: {
860
- value: REGISTERED_PROGRAM_STATUS;
298
+ WITHDRAW: {
299
+ value: TRANSACTION_TYPE;
861
300
  label: string;
862
301
  };
863
- ACCEPTED: {
864
- value: REGISTERED_PROGRAM_STATUS;
302
+ LESSON_FEE: {
303
+ value: TRANSACTION_TYPE;
865
304
  label: string;
866
305
  };
867
- REJECTED: {
868
- value: REGISTERED_PROGRAM_STATUS;
306
+ };
307
+ declare const OBJECT_TRANSACTION_STATUS: {
308
+ PENDING: {
309
+ value: TRANSACTION_STATUS;
869
310
  label: string;
870
311
  };
871
- };
872
- declare const OBJECT_SORT_TYPE: {
873
- ASC: {
874
- value: SORT_TYPE;
312
+ SUCCESS: {
313
+ value: TRANSACTION_STATUS;
875
314
  label: string;
876
315
  };
877
- DESC: {
878
- value: SORT_TYPE;
316
+ FAILED: {
317
+ value: TRANSACTION_STATUS;
879
318
  label: string;
880
319
  };
881
320
  };
882
- declare const OBJECT_CLASS_STATUS: {
883
- WAIT_FOR_ACCEPTING: {
884
- value: CLASS_STATUS;
321
+ declare const OBJECT_WITHDRAW_REQUEST_STATUS: {
322
+ PENDING: {
323
+ value: WITHDRAW_REQUEST_STATUS;
885
324
  label: string;
886
325
  };
887
- HAPPENING: {
888
- value: CLASS_STATUS;
326
+ APPROVED: {
327
+ value: WITHDRAW_REQUEST_STATUS;
328
+ label: string;
329
+ };
330
+ REJECTED: {
331
+ value: WITHDRAW_REQUEST_STATUS;
332
+ label: string;
333
+ };
334
+ COMBINED: {
335
+ value: WITHDRAW_REQUEST_STATUS;
336
+ label: string;
337
+ };
338
+ CANCELLED: {
339
+ value: WITHDRAW_REQUEST_STATUS;
889
340
  label: string;
890
341
  };
342
+ };
343
+ declare const OBJECT_REQUEST_TUTOR_FORM_STATUS: {
891
344
  PENDING: {
892
- value: CLASS_STATUS;
345
+ value: REQUEST_TUTOR_FORM_STATUS;
346
+ label: string;
347
+ };
348
+ PROCESS: {
349
+ value: REQUEST_TUTOR_FORM_STATUS;
893
350
  label: string;
894
351
  };
895
352
  FINISHED: {
896
- value: CLASS_STATUS;
353
+ value: REQUEST_TUTOR_FORM_STATUS;
897
354
  label: string;
898
355
  };
899
356
  CANCELED: {
900
- value: CLASS_STATUS;
357
+ value: REQUEST_TUTOR_FORM_STATUS;
901
358
  label: string;
902
359
  };
903
360
  };
904
- declare const OBJECT_TEACHING_TIME_RANGE: Record<TEACHING_TIME_RANGE, {
905
- value: TEACHING_TIME_RANGE;
906
- label: string;
907
- }>;
908
- declare const OBJECT_DAY_OF_WEEK: {
909
- MONDAY: {
910
- value: DAY_OF_WEEK;
361
+ declare const OBJECT_CLASS_STATUS_CANCELED_REASON: {
362
+ STUDENT_HAS_NOT_RESPONSE: {
363
+ value: CLASS_STATUS_CANCELED_REASON;
911
364
  label: string;
365
+ shortLabel: string;
912
366
  };
913
- TUESDAY: {
914
- value: DAY_OF_WEEK;
367
+ CREATE_BY_MISTAKE: {
368
+ value: CLASS_STATUS_CANCELED_REASON;
915
369
  label: string;
370
+ shortLabel: string;
916
371
  };
917
- WEDNESDAY: {
918
- value: DAY_OF_WEEK;
372
+ OTHER: {
373
+ value: CLASS_STATUS_CANCELED_REASON;
919
374
  label: string;
375
+ shortLabel: string;
920
376
  };
921
- THURSDAY: {
922
- value: DAY_OF_WEEK;
377
+ TUTOR_SPAM: {
378
+ value: CLASS_STATUS_CANCELED_REASON;
379
+ label: string;
380
+ shortLabel: string;
381
+ };
382
+ CHANGE_MIND: {
383
+ value: CLASS_STATUS_CANCELED_REASON;
384
+ label: string;
385
+ shortLabel: string;
386
+ };
387
+ };
388
+ declare const OBJECT_CLASS_ROOM_STATUS: {
389
+ enrolling: {
390
+ value: CLASS_ROOM_STATUS;
923
391
  label: string;
924
392
  };
925
- FRIDAY: {
926
- value: DAY_OF_WEEK;
393
+ ongoing: {
394
+ value: CLASS_ROOM_STATUS;
927
395
  label: string;
928
396
  };
929
- SATURDAY: {
930
- value: DAY_OF_WEEK;
397
+ completed: {
398
+ value: CLASS_ROOM_STATUS;
931
399
  label: string;
932
400
  };
933
- SUNDAY: {
934
- value: DAY_OF_WEEK;
401
+ paused: {
402
+ value: CLASS_ROOM_STATUS;
935
403
  label: string;
936
404
  };
937
- };
938
- declare const OBJECT_LESSON_ACTIVITY_STATUS: {
939
- NEW: {
940
- value: LESSON_ACTIVITY_STATUS;
405
+ canceled: {
406
+ value: CLASS_ROOM_STATUS;
941
407
  label: string;
942
408
  };
943
- COMPLETED: {
944
- value: LESSON_ACTIVITY_STATUS;
409
+ };
410
+ declare const OBJECT_STUDENT_IN_CLASS_ROOM_STATUS: {
411
+ REJECTED: {
412
+ value: STUDENT_IN_CLASS_ROOM_STATUS;
945
413
  label: string;
946
414
  };
947
- CANCELED: {
948
- value: LESSON_ACTIVITY_STATUS;
415
+ PENDING: {
416
+ value: STUDENT_IN_CLASS_ROOM_STATUS;
949
417
  label: string;
950
418
  };
951
- };
952
- declare const OBJECT_QUESTION_TYPES: {
953
- CHOICES: {
954
- value: QUESTION_TYPES;
419
+ ACTIVE: {
420
+ value: STUDENT_IN_CLASS_ROOM_STATUS;
955
421
  label: string;
956
422
  };
957
- ESSAY: {
958
- value: QUESTION_TYPES;
423
+ INACTIVE: {
424
+ value: STUDENT_IN_CLASS_ROOM_STATUS;
959
425
  label: string;
960
426
  };
961
- WORD_ARRANGEMENT: {
962
- value: QUESTION_TYPES;
427
+ SUSPENDED: {
428
+ value: STUDENT_IN_CLASS_ROOM_STATUS;
963
429
  label: string;
964
430
  };
965
- SPEAKING: {
966
- value: QUESTION_TYPES;
431
+ };
432
+ declare const OBJECT_LESSON_ATTENDANCE_STATUS: {
433
+ PRESENT: {
434
+ value: LESSON_ATTENDANCE_STATUS;
967
435
  label: string;
968
436
  };
969
- WRITING: {
970
- value: QUESTION_TYPES;
437
+ ABSENT: {
438
+ value: LESSON_ATTENDANCE_STATUS;
971
439
  label: string;
972
440
  };
973
- TEXT: {
974
- value: QUESTION_TYPES;
441
+ UNKNOWN: {
442
+ value: LESSON_ATTENDANCE_STATUS;
975
443
  label: string;
976
444
  };
977
445
  };
978
- declare const OBJECT_RATING: {
979
- 1: {
980
- value: number;
446
+ declare const OBJECT_PROGRAM_TYPE: {
447
+ ONE_TO_ONE: {
448
+ value: PROGRAM_TYPE;
981
449
  label: string;
982
450
  };
983
- 2: {
984
- value: number;
451
+ GROUP: {
452
+ value: PROGRAM_TYPE;
985
453
  label: string;
986
454
  };
987
- 3: {
988
- value: number;
455
+ };
456
+ declare const OBJECT_CERTIFICATION_STATUS: {
457
+ PENDING: {
458
+ value: CERTIFICATION_STATUS;
989
459
  label: string;
990
460
  };
991
- 4: {
992
- value: number;
461
+ APPROVED: {
462
+ value: CERTIFICATION_STATUS;
993
463
  label: string;
994
464
  };
995
- 5: {
996
- value: number;
465
+ REJECTED: {
466
+ value: CERTIFICATION_STATUS;
997
467
  label: string;
998
468
  };
999
469
  };
1000
- declare const OBJECT_POST_TYPE: {
1001
- DOCUMENT_SHARE: {
1002
- value: POST_TYPE;
1003
- label: string;
1004
- };
1005
- DISCUSSION: {
1006
- value: POST_TYPE;
470
+ declare const OBJECT_ACCOUNT_STATUS: {
471
+ PENDING: {
472
+ value: ACCOUNT_STATUS;
1007
473
  label: string;
1008
474
  };
1009
- };
1010
- declare const OBJECT_ANSWER_QUESTION_TYPE: {
1011
- CORRECT: {
1012
- value: ANSWER_QUESTION_TYPE;
475
+ APPROVED: {
476
+ value: ACCOUNT_STATUS;
1013
477
  label: string;
1014
478
  };
1015
- INCORRECT: {
1016
- value: ANSWER_QUESTION_TYPE;
479
+ REJECTED: {
480
+ value: ACCOUNT_STATUS;
1017
481
  label: string;
1018
482
  };
1019
- WAIT_FOR_GRADE: {
1020
- value: ANSWER_QUESTION_TYPE;
483
+ NEW: {
484
+ value: ACCOUNT_STATUS;
1021
485
  label: string;
1022
486
  };
1023
487
  };
1024
- declare const OBJECT_TRANSACTION_TYPE: {
1025
- DEPOSIT: {
1026
- value: TRANSACTION_TYPE;
1027
- label: string;
1028
- };
1029
- WITHDRAW: {
1030
- value: TRANSACTION_TYPE;
1031
- label: string;
1032
- };
1033
- LESSON_FEE: {
1034
- value: TRANSACTION_TYPE;
1035
- label: string;
1036
- };
488
+ declare enum RTC_ROLES {
489
+ PUBLISHER = "PUBLISHER",
490
+ SUBSCRIBER = "SUBSCRIBER"
491
+ }
492
+
493
+ type TProgramSuitableLearnerEntity = {
494
+ suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
495
+ program: TProgramEntity;
496
+ } & BaseEntity;
497
+ type TProgramEntity = {
498
+ thumbnail: string;
499
+ name: string;
500
+ shortDescription: string;
501
+ detailDescription: string;
502
+ fromPrice: number;
503
+ toPrice: number;
504
+ account: TAccountEntity;
505
+ method: PROGRAM_METHOD;
506
+ durationPerSession: number;
507
+ fullName: string;
508
+ mode: REGISTER_PROGRAM_MODE;
509
+ } & BaseEntity;
510
+ type TStudentEntity = {
511
+ district: TDistrictEntity | null | null;
512
+ province: TProvinceEntity | null | null;
513
+ birthDay: string | null;
514
+ hiddenBirthDay: boolean;
515
+ phoneNumber: string | null | null;
516
+ hiddenPhoneNumber: boolean;
517
+ account: TAccountEntity;
518
+ expectedFee: number | null;
519
+ totalHourLearning: number;
520
+ studyMethod: PROGRAM_METHOD | null;
521
+ jobDescription: string | null;
522
+ introduction: string | null;
523
+ isZaloPhoneNumber: boolean | null;
524
+ learningDayOfWeeks: TDayOfWeekEntity[];
525
+ studyTimeRange: TTeachingTimeRangeEntity[];
526
+ subjectInterested: TCategoryEntity[];
527
+ keywordInterested: (TCategoryEntity & {
528
+ parent: TCategoryEntity;
529
+ })[];
530
+ } & BaseEntity;
531
+ type TAccountEntity = {
532
+ id: string;
533
+ fullname: string;
534
+ avatar: string | null;
535
+ type: CUSTOMER_TYPE | null;
536
+ registerMethod: REGISTER_METHOD;
537
+ status: ACCOUNT_STATUS;
538
+ pendingAt: Date;
539
+ completedAt: Date;
540
+ rejectReason: string;
541
+ backIDCard: string;
542
+ frontIDCard: string;
543
+ introductionVideo: string;
544
+ completedInternalAccount: TInternalAccountEntity | null;
545
+ password: string | null;
546
+ username: string;
547
+ keyForgot: string | null;
548
+ providerId: string | null;
549
+ updatedAt: Date;
550
+ createdAt: Date;
551
+ deletedAt: Date | null;
552
+ tutor: TTutorEntity | null | null;
553
+ student: TStudentEntity | null | null;
554
+ birthDay: string | null;
555
+ hiddenBirthDay: boolean;
556
+ phoneNumber: string | null;
557
+ hiddenPhoneNumber: boolean;
558
+ hashedPin: string | null;
559
+ };
560
+ type TAdministrativeRegionEntity = {
561
+ id: number;
562
+ name: string;
563
+ nameEn: string;
564
+ codeName: string | null;
565
+ codeNameEn: string | null;
566
+ };
567
+ type TAdministrativeUnitEntity = {
568
+ id: number;
569
+ fullName: string | null;
570
+ fullNameEn: string | null;
571
+ shortName: string | null;
572
+ shortNameEn: string | null;
573
+ codeName: string | null;
574
+ codeNameEn: string | null;
575
+ };
576
+ type TProvinceEntity = {
577
+ code: string;
578
+ name: string;
579
+ nameEn: string | null;
580
+ fullName: string;
581
+ fullNameEn: string | null;
582
+ codeName: string | null;
583
+ administrativeRegion: TAdministrativeRegionEntity;
584
+ administrativeUnit: TAdministrativeUnitEntity;
585
+ };
586
+ type TDistrictEntity = {
587
+ code: string;
588
+ name: string;
589
+ nameEn: string | null;
590
+ fullName: string | null;
591
+ fullNameEn: string | null;
592
+ codeName: string | null;
593
+ province: TProvinceEntity;
594
+ administrativeUnit: TAdministrativeUnitEntity;
595
+ };
596
+ type TTutorEntity = {
597
+ totalTeachingHours: number;
598
+ totalSessions: number;
599
+ introduction: string | null;
600
+ shortVideoUrl: string | null;
601
+ district: TDistrictEntity | null;
602
+ province: TProvinceEntity | null;
603
+ birthDay: string | null;
604
+ phoneNumber: string | null;
605
+ account: TAccountEntity;
606
+ } & BaseEntity;
607
+ type TStudent = {
608
+ account: TAccountEntity;
609
+ jobDescription: string | null;
610
+ district: TDistrictEntity | null | null;
611
+ province: TProvinceEntity | null | null;
612
+ birthDay: string | null | null;
613
+ hiddenBirthDay: boolean;
614
+ totalHourLearning: number;
615
+ totalProgram: number;
616
+ phoneNumber: string | null | null;
617
+ hiddenPhoneNumber: boolean;
618
+ } & BaseEntity;
619
+ type TNotificationEntity = {
620
+ title: string | null;
621
+ link: string | null;
622
+ content: string | null;
623
+ type: NOTIFICATION_TYPE;
624
+ sender: TAccountEntity | null;
625
+ status: NOTIFICATION_STATUS;
626
+ receiver: TAccountEntity | null;
627
+ } & BaseEntity;
628
+ type TRegisteredProgramEntity = {
629
+ status: REGISTERED_PROGRAM_STATUS;
630
+ note: string | null;
631
+ viaZalo: boolean;
632
+ studentNote: string | null;
633
+ studentPhoneNumber: string;
634
+ studentProgramMethodDesired: PROGRAM_METHOD | null;
635
+ studentProvince: TProvinceEntity | null;
636
+ studentDistrict: TDistrictEntity | null;
637
+ addressStudent: string | null;
638
+ studentInterestedProgram: TProgramEntity;
639
+ registeredStudent: TAccountEntity;
640
+ class: TClassEntity | null;
641
+ } & BaseEntity;
642
+ type TClassEntity = {
643
+ name: string;
644
+ feePerLesson: number | null;
645
+ note: string | null;
646
+ status: CLASS_STATUS;
647
+ classStatusCanceledReason: CLASS_STATUS_CANCELED_REASON | null;
648
+ classStatusCanceledNote: string | null;
649
+ cancelBy: TAccountEntity | null;
650
+ program: TProgramEntity;
651
+ registeredProgram: TRegisteredProgramEntity | null;
652
+ student: TAccountEntity | null;
653
+ tutor: TAccountEntity;
654
+ learningTimes: TClassLearningTimeEntity[];
655
+ } & BaseEntity;
656
+ type TLessonEntity = {
657
+ startTime: string;
658
+ endTime: string;
659
+ status: LESSON_ACTIVITY_STATUS | null;
660
+ note: string;
661
+ hasApproved: boolean;
662
+ hasPaid: boolean;
663
+ fee: number;
664
+ class: TClassEntity;
665
+ } & BaseEntity;
666
+ type TClassLearningTimeEntity = {
667
+ dayOfWeek: DAY_OF_WEEK;
668
+ startTime: string;
669
+ endTime: string;
670
+ class: TClassEntity;
671
+ } & BaseEntity;
672
+ type TClassNotificationEntity = {
673
+ description: string;
674
+ } & BaseEntity;
675
+ type TProposedLearningLessonEntity = {
676
+ proposedLearningLesson: TProposedLearningEntity;
677
+ lesson: TLessonEntity;
678
+ } & BaseEntity;
679
+ type TProposedLearningEntity = {
680
+ class: TClassEntity;
681
+ title: string;
682
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
683
+ description: string | null;
684
+ } & BaseEntity;
685
+ type TFileLessonEntity = {
686
+ url: string;
687
+ name: string;
688
+ size: number;
689
+ } & BaseEntity;
690
+ type TDocumentsEntity = {
691
+ order: number;
692
+ } & BaseEntity;
693
+ type TPostDocumentEntity = {
694
+ order: number;
695
+ } & BaseEntity;
696
+ type TFileEntity = {
697
+ url: string;
698
+ name: string;
699
+ size: number;
700
+ } & BaseEntity;
701
+ type TGroupQuestionEntity = {
702
+ title: string;
703
+ content: string;
704
+ totalQuestion?: number;
705
+ } & BaseEntity;
706
+ type TQuestionEntity = {
707
+ content: string;
708
+ order: number;
709
+ type: QUESTION_TYPES;
710
+ explainContent: string;
711
+ showExplain: boolean;
712
+ } & BaseEntity;
713
+ type TQuestionTypeChoiceEntity = {
714
+ content: string;
715
+ isCorrect: boolean;
716
+ } & BaseEntity;
717
+ type TQuestionTypeEssayEntity = {
718
+ correctAnswer: string;
719
+ } & BaseEntity;
720
+ type TQuestionTypeWordArrangementEntity = {
721
+ content: string;
722
+ sortOrder: number;
723
+ correctOrder: number;
724
+ } & BaseEntity;
725
+ type TSessionGroupQuestionEntity = {
726
+ finishedAt: string;
727
+ totalQuestion: number;
728
+ correctQuestion: number;
729
+ status: SESSION_GROUP_QUESTION;
730
+ } & BaseEntity;
731
+ type TAnswerQuestionEntity = {
732
+ answerText: string;
733
+ commentContent: string | null;
734
+ feedbackContent: string | null;
735
+ } & BaseEntity;
736
+ type TAnswerChoiceEntity = {} & BaseEntity;
737
+ type TAnswerWordArrangementEntity = {
738
+ chosenOrder: number;
739
+ } & BaseEntity;
740
+ type TEditorEntity = {
741
+ title: string;
742
+ content: string;
743
+ } & BaseEntity;
744
+ type TProgramRatingEntity = {
745
+ score: number;
746
+ comment: string;
747
+ } & BaseEntity;
748
+ type TPostEntity = {
749
+ title: string;
750
+ content?: string;
751
+ type: POST_TYPE;
752
+ } & BaseEntity;
753
+ type TPostCommentEntity = {
754
+ content: string;
755
+ } & BaseEntity;
756
+ type TBankEntity = {
757
+ name: string;
758
+ shortName: string;
759
+ code: string;
760
+ bin: string;
761
+ logo: string;
762
+ transferSupported: number;
763
+ lookupSupported: number;
764
+ support: number;
765
+ isTransfer: number;
766
+ swiftCode: string | null;
767
+ } & BaseEntity;
768
+ type TAccountBankInfoEntity = {
769
+ bankNumber: string;
770
+ receiverName: string;
771
+ } & BaseEntity;
772
+ type TTransactionEntity = {
773
+ type: TRANSACTION_TYPE;
774
+ code: string;
775
+ amount: number;
776
+ amountReceive: number;
777
+ fee: number;
778
+ serviceFee: number;
779
+ status: TRANSACTION_STATUS;
780
+ gateway: TRANSACTION_GATEWAY;
781
+ gatewayTransactionId: string;
782
+ gatewayData: Record<string, any>;
783
+ completedAt: string;
784
+ } & BaseEntity;
785
+ type TWalletEntity = {
786
+ balance: number;
787
+ lockedBalance: number;
788
+ } & BaseEntity;
789
+ type TWithdrawRequestEntity = {
790
+ amount: number;
791
+ status: WITHDRAW_REQUEST_STATUS;
792
+ rejectReason: string;
793
+ completedAt: string;
794
+ } & BaseEntity;
795
+ type TInternalAccountEntity = {
796
+ username: string;
797
+ password: string;
798
+ fullname: string;
799
+ email: string;
800
+ phone: string;
801
+ isActive: boolean;
802
+ role: INTERNAL_ROLE;
803
+ } & BaseInternalEntity;
804
+ type THistoryLoginEntity = {
805
+ device: string;
806
+ id: string;
807
+ os: string;
808
+ browser: string;
809
+ location: string;
810
+ expiredRefresh: string;
811
+ };
812
+ type TDocumentFolderEntity = {
813
+ name: string;
814
+ } & BaseEntity;
815
+ type TStudentDocumentEntity = {
816
+ order: number;
817
+ } & BaseEntity;
818
+ type TStudentDocumentFolderEntity = {
819
+ name: string;
820
+ } & BaseEntity;
821
+ type TDayOfWeekEntity = {
822
+ id: string;
823
+ dayOfWeek: DAY_OF_WEEK;
1037
824
  };
1038
- declare const OBJECT_TRANSACTION_STATUS: {
1039
- PENDING: {
1040
- value: TRANSACTION_STATUS;
1041
- label: string;
1042
- };
1043
- SUCCESS: {
1044
- value: TRANSACTION_STATUS;
1045
- label: string;
1046
- };
1047
- FAILED: {
1048
- value: TRANSACTION_STATUS;
1049
- label: string;
1050
- };
825
+ type TTeachingTimeRangeEntity = {
826
+ id: string;
827
+ time: TEACHING_TIME_RANGE;
1051
828
  };
1052
- declare const OBJECT_WITHDRAW_REQUEST_STATUS: {
1053
- PENDING: {
1054
- value: WITHDRAW_REQUEST_STATUS;
1055
- label: string;
1056
- };
1057
- APPROVED: {
1058
- value: WITHDRAW_REQUEST_STATUS;
1059
- label: string;
1060
- };
1061
- REJECTED: {
1062
- value: WITHDRAW_REQUEST_STATUS;
1063
- label: string;
1064
- };
1065
- COMBINED: {
1066
- value: WITHDRAW_REQUEST_STATUS;
1067
- label: string;
1068
- };
1069
- CANCELLED: {
1070
- value: WITHDRAW_REQUEST_STATUS;
1071
- label: string;
1072
- };
829
+ type TRequestTutorFormEntity = {
830
+ phoneNumber: string;
831
+ code: string;
832
+ isZaloPhoneNumber: boolean;
833
+ jobDescription: string;
834
+ expectedFee: number;
835
+ method: PROGRAM_METHOD;
836
+ status: REQUEST_TUTOR_FORM_STATUS;
837
+ note: string;
838
+ learningDayOfWeeks: TDayOfWeekEntity[];
839
+ studyTimeRange: TTeachingTimeRangeEntity[];
840
+ address?: string;
841
+ completedAt: string | null;
842
+ processAt: string | null;
843
+ } & BaseEntity;
844
+ type TLessonClassRoomEntity = {
845
+ startTime: string;
846
+ endTime: string;
847
+ status: LESSON_ACTIVITY_STATUS;
848
+ note: string;
849
+ } & BaseEntity;
850
+ type TClassRoomEntity = {
851
+ name: string;
852
+ feePerLesson: number;
853
+ status: CLASS_ROOM_STATUS;
854
+ program: TProgramEntity;
855
+ } & BaseEntity;
856
+ type TCategoryEntity = {
857
+ name: string;
858
+ slug: string;
859
+ status: CATEGORY_STATUS;
860
+ subjectProgramCount?: number;
861
+ keywordProgramCount?: number;
862
+ } & BaseEntity;
863
+ type TProposedCategoryEntity = {
864
+ name: string;
865
+ status: PROPOSED_CATEGORY_STATUS;
866
+ } & BaseEntity;
867
+ type TCertificationEntity = {
868
+ name: string;
869
+ status: CERTIFICATION_STATUS;
870
+ rejectReason: string;
871
+ completedAt: string;
872
+ } & BaseEntity;
873
+ type TConversationEntity = {
874
+ type: CONVERSATION_TYPE;
875
+ participants: TConversationParticipantsEntity[];
876
+ } & BaseEntity;
877
+ type TConversationParticipantsEntity = {
878
+ account: TAccountEntity;
879
+ lastSeenAt: string;
880
+ lastSeenMessage: TMessageEntity;
881
+ } & BaseEntity;
882
+ type TConversationMessageEntity = {
883
+ content: string;
884
+ type: MESSAGE_TYPE;
885
+ } & BaseEntity;
886
+ type TMessageEntity = {
887
+ type: MESSAGE_TYPE;
888
+ content: string;
889
+ } & BaseEntity;
890
+ type TMessageSeenEntity = {
891
+ id: string;
892
+ createdAt: string;
1073
893
  };
1074
- declare const OBJECT_REQUEST_TUTOR_FORM_STATUS: {
1075
- PENDING: {
1076
- value: REQUEST_TUTOR_FORM_STATUS;
1077
- label: string;
1078
- };
1079
- PROCESS: {
1080
- value: REQUEST_TUTOR_FORM_STATUS;
1081
- label: string;
1082
- };
1083
- FINISHED: {
1084
- value: REQUEST_TUTOR_FORM_STATUS;
1085
- label: string;
1086
- };
1087
- CANCELED: {
1088
- value: REQUEST_TUTOR_FORM_STATUS;
1089
- label: string;
1090
- };
894
+ type TMeetingEntity = {
895
+ chanelName: string;
896
+ startTime: Date;
897
+ endTime: Date;
898
+ } & BaseEntity;
899
+ type TMeetingParticipantEntity = {
900
+ rtcRole: RTC_ROLES;
901
+ joinedAt: string;
902
+ leftAt: string;
903
+ } & BaseEntity;
904
+
905
+ declare enum CUSTOMER_TYPE {
906
+ TUTOR = "tutor",
907
+ STUDENT = "student"
908
+ }
909
+ declare enum REGISTER_METHOD {
910
+ EMAIL = "email",
911
+ GOOGLE = "google"
912
+ }
913
+ declare enum GENDER {
914
+ MALE = "male",
915
+ FEMALE = "female"
916
+ }
917
+ declare enum PROGRAM_METHOD {
918
+ ONLINE = "online",
919
+ OFFLINE = "offline",
920
+ ONLINE_OFFLINE = "Online/Offline"
921
+ }
922
+ declare enum ResponseStatus {
923
+ Success = "success",
924
+ BadRequest = "bad_request",
925
+ NotFound = "not_found",
926
+ Unauthorized = "unauthorized",
927
+ Forbidden = "forbidden",
928
+ InternalServerError = "internal_server_error"
929
+ }
930
+ type BaseResponse<T = any> = {
931
+ status: ResponseStatus;
932
+ message: string;
933
+ data: T;
1091
934
  };
1092
- declare const OBJECT_CLASS_STATUS_CANCELED_REASON: {
1093
- STUDENT_HAS_NOT_RESPONSE: {
1094
- value: CLASS_STATUS_CANCELED_REASON;
1095
- label: string;
1096
- shortLabel: string;
1097
- };
1098
- CREATE_BY_MISTAKE: {
1099
- value: CLASS_STATUS_CANCELED_REASON;
1100
- label: string;
1101
- shortLabel: string;
1102
- };
1103
- OTHER: {
1104
- value: CLASS_STATUS_CANCELED_REASON;
1105
- label: string;
1106
- shortLabel: string;
1107
- };
1108
- TUTOR_SPAM: {
1109
- value: CLASS_STATUS_CANCELED_REASON;
1110
- label: string;
1111
- shortLabel: string;
1112
- };
1113
- CHANGE_MIND: {
1114
- value: CLASS_STATUS_CANCELED_REASON;
1115
- label: string;
1116
- shortLabel: string;
1117
- };
935
+ type BasePaginationParams = {
936
+ page?: number;
937
+ limit?: number;
1118
938
  };
1119
- declare const OBJECT_CLASS_ROOM_STATUS: {
1120
- enrolling: {
1121
- value: CLASS_ROOM_STATUS;
1122
- label: string;
1123
- };
1124
- ongoing: {
1125
- value: CLASS_ROOM_STATUS;
1126
- label: string;
1127
- };
1128
- completed: {
1129
- value: CLASS_ROOM_STATUS;
1130
- label: string;
1131
- };
1132
- paused: {
1133
- value: CLASS_ROOM_STATUS;
1134
- label: string;
1135
- };
1136
- canceled: {
1137
- value: CLASS_ROOM_STATUS;
1138
- label: string;
1139
- };
939
+ type BaseEntity = {
940
+ id: string;
941
+ createdAt: string;
942
+ updatedAt: string;
943
+ deletedAt: string | null;
944
+ createdBy: TAccountEntity | null;
945
+ updatedBy: TAccountEntity | null;
1140
946
  };
1141
- declare const OBJECT_STUDENT_IN_CLASS_ROOM_STATUS: {
1142
- REJECTED: {
1143
- value: STUDENT_IN_CLASS_ROOM_STATUS;
1144
- label: string;
1145
- };
1146
- PENDING: {
1147
- value: STUDENT_IN_CLASS_ROOM_STATUS;
1148
- label: string;
1149
- };
1150
- ACTIVE: {
1151
- value: STUDENT_IN_CLASS_ROOM_STATUS;
1152
- label: string;
1153
- };
1154
- INACTIVE: {
1155
- value: STUDENT_IN_CLASS_ROOM_STATUS;
1156
- label: string;
1157
- };
1158
- SUSPENDED: {
1159
- value: STUDENT_IN_CLASS_ROOM_STATUS;
1160
- label: string;
1161
- };
947
+ type BaseInternalEntity = {
948
+ id: string;
949
+ createdAt: string;
950
+ updatedAt: string;
951
+ deletedAt: string | null;
952
+ createdBy: TInternalAccountEntity | null;
953
+ updatedBy: TInternalAccountEntity | null;
1162
954
  };
1163
- declare const OBJECT_LESSON_ATTENDANCE_STATUS: {
1164
- PRESENT: {
1165
- value: LESSON_ATTENDANCE_STATUS;
1166
- label: string;
1167
- };
1168
- ABSENT: {
1169
- value: LESSON_ATTENDANCE_STATUS;
1170
- label: string;
1171
- };
1172
- UNKNOWN: {
1173
- value: LESSON_ATTENDANCE_STATUS;
1174
- label: string;
1175
- };
955
+ type DATA_THIRD_PARTY_LOGIN = {
956
+ fullname: string;
957
+ providerId: string;
958
+ provider: REGISTER_METHOD;
959
+ avatar?: string;
960
+ email: string;
1176
961
  };
1177
- declare const OBJECT_PROGRAM_TYPE: {
1178
- ONE_TO_ONE: {
1179
- value: PROGRAM_TYPE;
1180
- label: string;
1181
- };
1182
- GROUP: {
1183
- value: PROGRAM_TYPE;
1184
- label: string;
1185
- };
962
+ declare enum PROGRAM_SUITABLE_LEARNER {
963
+ PRE_SCHOOL = "pre_school",
964
+ PRIMARY_STUDENT = "primary_student",
965
+ SECONDARY_STUDENT = "secondary_student",
966
+ HIGHT_SCHOOL_STUDENT = "hight_school_student",
967
+ UNIVERSITY_STUDENT = "university_student",
968
+ WORKING_PEOPLE = "working_people"
969
+ }
970
+ declare enum SCHOOL_STATUS {
971
+ CURRENT = "CURRENT",
972
+ GRADUATED = "GRADUATED"
973
+ }
974
+ declare enum NOTIFICATION_TYPE {
975
+ STANDARD = "STANDARD",// thông báo của người dùng
976
+ SYSTEM = "SYSTEM"
977
+ }
978
+ declare enum NOTIFICATION_STATUS {
979
+ UNREAD = "UNREAD",
980
+ READ = "READ"
981
+ }
982
+ declare enum REGISTERED_PROGRAM_STATUS {
983
+ NEW = "NEW",
984
+ TESTED = "TESTED",
985
+ ACCEPTED = "ACCEPTED",
986
+ REJECTED = "REJECTED"
987
+ }
988
+ declare enum REFRESH_TYPE {
989
+ NOTIFICATION = "NOTIFICATION",
990
+ PROPOSED_LEARNING_PAYMENT = "PROPOSED_LEARNING_PAYMENT",
991
+ WITHDRAW_SUCCESS = "WITHDRAW_SUCCESS",
992
+ UPDATE_LAST_SEEN = "UPDATE_LAST_SEEN",
993
+ NEW_MESSAGES = "NEW_MESSAGES",
994
+ TYPING_STATUS = "TYPING_STATUS"
995
+ }
996
+ declare enum SORT_TYPE {
997
+ ASC = "ASC",
998
+ DESC = "DESC"
999
+ }
1000
+ declare enum CLASS_STATUS {
1001
+ WAIT_FOR_ACCEPTING = "WAIT_FOR_ACCEPTING",
1002
+ HAPPENING = "HAPPENING",
1003
+ PENDING = "PENDING",
1004
+ FINISHED = "FINISHED",
1005
+ CANCELED = "CANCELED"
1006
+ }
1007
+ declare enum CLASS_STATUS_CANCELED_REASON {
1008
+ STUDENT_HAS_NOT_RESPONSE = "STUDENT_HAS_NOT_RESPONSE",// của gia sư
1009
+ CREATE_BY_MISTAKE = "CREATE_BY_MISTAKE",// của gia sư
1010
+ OTHER = "OTHER",// của gia sư & học viên
1011
+ TUTOR_SPAM = "TUTOR_SPAM",// của học viên
1012
+ CHANGE_MIND = "CHANGE_MIND"
1013
+ }
1014
+ declare enum CLASS_STATUS_CANCELED_REASON_STUDENT {
1015
+ TUTOR_SPAM = "TUTOR_SPAM",
1016
+ CHANGE_MIND = "CHANGE_MIND",
1017
+ OTHER = "OTHER"
1018
+ }
1019
+ declare enum CLASS_STATUS_CANCELED_REASON_TUTOR {
1020
+ STUDENT_HAS_NOT_RESPONSE = "STUDENT_HAS_NOT_RESPONSE",
1021
+ CREATE_BY_MISTAKE = "CREATE_BY_MISTAKE",
1022
+ OTHER = "OTHER"
1023
+ }
1024
+ declare enum TEACHING_TIME_RANGE {
1025
+ RANGE_6_8 = "RANGE_6_8",
1026
+ RANGE_8_10 = "RANGE_8_10",
1027
+ RANGE_10_12 = "RANGE_10_12",
1028
+ RANGE_14_16 = "RANGE_14_16",
1029
+ RANGE_16_18 = "RANGE_16_18",
1030
+ RANGE_18_20 = "RANGE_18_20",
1031
+ RANGE_20_22 = "RANGE_20_22"
1032
+ }
1033
+ declare enum CLASS_STATUS_TUTOR_EDIT {
1034
+ HAPPENING = "HAPPENING",
1035
+ PENDING = "PENDING",
1036
+ FINISHED = "FINISHED"
1037
+ }
1038
+ declare enum CLASS_STATUS_STUDENT_EDIT {
1039
+ CANCELED = "CANCELED",
1040
+ HAPPENING = "HAPPENING"
1041
+ }
1042
+ declare enum LESSON_ACTIVITY_STATUS {
1043
+ NEW = "NEW",
1044
+ CANCELED = "CANCELED",
1045
+ COMPLETED = "COMPLETED"
1046
+ }
1047
+ declare enum DAY_OF_WEEK {
1048
+ MONDAY = "MONDAY",
1049
+ TUESDAY = "TUESDAY",
1050
+ WEDNESDAY = "WEDNESDAY",
1051
+ THURSDAY = "THURSDAY",
1052
+ FRIDAY = "FRIDAY",
1053
+ SATURDAY = "SATURDAY",
1054
+ SUNDAY = "SUNDAY"
1055
+ }
1056
+ declare enum QUESTION_TYPES {
1057
+ CHOICES = "CHOICES",
1058
+ ESSAY = "ESSAY",
1059
+ WORD_ARRANGEMENT = "WORD_ARRANGEMENT",
1060
+ SPEAKING = "SPEAKING",
1061
+ TEXT = "TEXT",
1062
+ WRITING = "WRITING"
1063
+ }
1064
+ declare enum SESSION_GROUP_QUESTION {
1065
+ IN_PROCESS = "IN_PROCESS",
1066
+ FINISHED = "FINISHED"
1067
+ }
1068
+ declare enum PROGRAM_DETAIL_TABS {
1069
+ INTRODUCTION = "INTRODUCTION",
1070
+ RATING = "RATING"
1071
+ }
1072
+ declare enum POST_TYPE {
1073
+ DOCUMENT_SHARE = "DOCUMENT_SHARE",
1074
+ DISCUSSION = "DISCUSSION"
1075
+ }
1076
+ declare enum ANSWER_QUESTION_TYPE {
1077
+ WAIT_FOR_GRADE = "WAIT_FOR_GRADE",
1078
+ RIGHT = "CORRECT",
1079
+ WRONG = "INCORRECT"
1080
+ }
1081
+ declare enum PROPOSED_LEARNING_PAYMENT_STATUS {
1082
+ PENDING = "PENDING",
1083
+ SUCCESS = "SUCCESS",
1084
+ FAILED = "FAILED"
1085
+ }
1086
+ declare enum TRANSACTION_TYPE {
1087
+ DEPOSIT = "DEPOSIT",
1088
+ WITHDRAW = "WITHDRAW",
1089
+ LESSON_FEE = "LESSON_FEE"
1090
+ }
1091
+ declare enum TRANSACTION_STATUS {
1092
+ PENDING = "PENDING",
1093
+ SUCCESS = "SUCCESS",
1094
+ FAILED = "FAILED"
1095
+ }
1096
+ declare enum TRANSACTION_GATEWAY {
1097
+ SEPAY = "SEPAY",
1098
+ MANUAL = "MANUAL"
1099
+ }
1100
+ declare enum WITHDRAW_REQUEST_STATUS {
1101
+ PENDING = "PENDING",
1102
+ APPROVED = "APPROVED",
1103
+ REJECTED = "REJECTED",
1104
+ COMBINED = "COMBINED",
1105
+ CANCELLED = "CANCELLED"
1106
+ }
1107
+ declare enum INTERNAL_ROLE {
1108
+ ADMIN = "ADMIN"
1109
+ }
1110
+ declare enum MISSING_TRANSACTION_TYPE {
1111
+ IN = "IN",
1112
+ OUT = "OUT"
1113
+ }
1114
+ declare enum REQUEST_TUTOR_FORM_STATUS {
1115
+ PENDING = "PENDING",
1116
+ PROCESS = "PROCESS",
1117
+ FINISHED = "FINISHED",
1118
+ CANCELED = "CANCELED"
1119
+ }
1120
+ type TSessionGroupQuestionStatistic = {
1121
+ sessionGroupQuestionId: string;
1122
+ totalCorrectQuestion: number;
1123
+ totalWaitForGradeQuestion: number;
1124
+ sessionGroupQuestionTotalQuestion: number;
1186
1125
  };
1187
- declare const OBJECT_CERTIFICATION_STATUS: {
1188
- PENDING: {
1189
- value: CERTIFICATION_STATUS;
1190
- label: string;
1191
- };
1192
- APPROVED: {
1193
- value: CERTIFICATION_STATUS;
1194
- label: string;
1195
- };
1196
- REJECTED: {
1197
- value: CERTIFICATION_STATUS;
1198
- label: string;
1199
- };
1126
+ type TClassNotificationStatistic = {
1127
+ id: string;
1128
+ isExistingInDocument: boolean;
1200
1129
  };
1201
- declare const OBJECT_ACCOUNT_STATUS: {
1202
- PENDING: {
1203
- value: ACCOUNT_STATUS;
1204
- label: string;
1205
- };
1206
- APPROVED: {
1207
- value: ACCOUNT_STATUS;
1208
- label: string;
1209
- };
1210
- REJECTED: {
1211
- value: ACCOUNT_STATUS;
1212
- label: string;
1213
- };
1214
- NEW: {
1215
- value: ACCOUNT_STATUS;
1216
- label: string;
1217
- };
1130
+ type TPostStatistic = {
1131
+ id: string;
1132
+ totalUpvote: number;
1133
+ totalComments: number;
1134
+ totalImported: number;
1135
+ hasImported: boolean;
1136
+ hasUpvoted: boolean;
1218
1137
  };
1219
- declare enum RTC_ROLES {
1220
- PUBLISHER = "PUBLISHER",
1221
- SUBSCRIBER = "SUBSCRIBER"
1138
+ declare enum CLASS_ROOM_STATUS {
1139
+ ENROLLING = "enrolling",// Tuyển sinh
1140
+ ONGOING = "ongoing",// Đang diễn ra
1141
+ COMPLETED = "completed",// Kết thúc
1142
+ PAUSED = "paused",// Tạm dừng
1143
+ CANCELED = "canceled"
1144
+ }
1145
+ declare enum STUDENT_IN_CLASS_ROOM_STATUS {
1146
+ PENDING = "PENDING",// Chưa chấp nhập lời mời tham gia
1147
+ REJECTED = "REJECTED",// từ chối lời mời tham gia
1148
+ ACTIVE = "ACTIVE",// Hoạt động
1149
+ INACTIVE = "INACTIVE",// Không hoạt động
1150
+ SUSPENDED = "SUSPENDED"
1151
+ }
1152
+ declare enum LESSON_ATTENDANCE_STATUS {
1153
+ PRESENT = "PRESENT",// Có mặt
1154
+ ABSENT = "ABSENT",// Vắng mặt
1155
+ UNKNOWN = "UNKNOWN"
1156
+ }
1157
+ declare enum PROGRAM_TYPE {
1158
+ ONE_TO_ONE = "ONE_TO_ONE",// dạy 1-1
1159
+ GROUP = "GROUP"
1160
+ }
1161
+ declare enum CLASS_INHERITANCE_TYPE {
1162
+ ONE_TO_ONE = "ONE_TO_ONE",// lớp học 1-1
1163
+ ROOM = "ROOM"
1164
+ }
1165
+ declare enum LESSON_INHERITANCE_TYPE {
1166
+ ONE_TO_ONE = "ONE_TO_ONE",// lớp học 1-1
1167
+ ROOM = "ROOM"
1168
+ }
1169
+ declare enum CATEGORY_STATUS {
1170
+ ACTIVE = "ACTIVE",
1171
+ INACTIVE = "INACTIVE"
1172
+ }
1173
+ declare enum PROPOSED_CATEGORY_STATUS {
1174
+ PENDING = "PENDING",
1175
+ APPROVED = "APPROVED",
1176
+ REJECTED = "REJECTED"
1177
+ }
1178
+ declare enum CERTIFICATION_STATUS {
1179
+ PENDING = "PENDING",
1180
+ APPROVED = "APPROVED",
1181
+ REJECTED = "REJECTED"
1182
+ }
1183
+ declare enum ACCOUNT_STATUS {
1184
+ PENDING = "PENDING",
1185
+ APPROVED = "APPROVED",
1186
+ REJECTED = "REJECTED",
1187
+ NEW = "NEW"
1188
+ }
1189
+ declare enum REGISTER_PROGRAM_MODE {
1190
+ GUEST = "GUEST",// khách điền form
1191
+ AUTHENTICATED = "AUTHENTICATED"
1192
+ }
1193
+ declare enum MESSAGE_TYPE {
1194
+ TEXT = "TEXT",
1195
+ IMAGE = "IMAGE",
1196
+ VIDEO = "VIDEO",
1197
+ AUDIO = "AUDIO"
1198
+ }
1199
+ declare enum CONVERSATION_TYPE {
1200
+ ONE_TO_ONE = "ONE_TO_ONE",
1201
+ GROUP = "GROUP"
1222
1202
  }
1223
1203
 
1204
+ declare const OTP_RESEND_TIME = 60;
1205
+ declare const URL_CLASS_DETAIL = "/class-detail";
1206
+ declare const COMMON_ROUTES: {
1207
+ classList: string;
1208
+ profile: string;
1209
+ profileDetail(accountId: string): string;
1210
+ registeredProgram: string;
1211
+ studentClassList: string;
1212
+ wallet: string;
1213
+ classDetail: (id: string) => string;
1214
+ programDetailUrl: string;
1215
+ programDetail(id: string, tab: PROGRAM_DETAIL_TABS): string;
1216
+ classDetailReport: (classId: string, reportId: string) => string;
1217
+ };
1218
+ declare const REGISTER_PROGRAM_TIME: number;
1219
+ declare const AT_LEAST_ALLOW_RATING_PROGRAM_HOUR = 1;
1220
+ declare const AT_LEAST_ALLOW_RATING_PROGRAM_LESSONS = 1;
1221
+ declare const ACCEPTED_IMAGE_TYPES: string[];
1222
+ declare const ACCEPTED_VIDEO_TYPES: string[];
1223
+ declare const ACCEPTED_AUDIO_TYPES: string[];
1224
+ declare const CLASS_STATUS_ORDER: CLASS_STATUS[];
1225
+ declare const TRANSACTION_FEE = 500;
1226
+ declare const LESSON_FEE_RATE: number;
1227
+ declare const HASHED_PIN_LENGTH = 5;
1228
+ declare const MAX_DOCUMENT_FOLDER = 20;
1229
+ declare const MAX_STUDENT_DOCUMENT_FOLDER = 20;
1230
+ declare const MAX_STUDENT_CLASS_ROOM = 7;
1231
+ declare const MAX_KEYWORD_PROGRAM = 5;
1232
+ declare const MAX_PROGRAM_TUITION_FEE = 700000;
1233
+
1224
1234
  type TRegisteredProgramCreatePost = {
1225
1235
  studentNote?: string;
1226
1236
  viaZalo?: boolean;
@@ -3085,5 +3095,19 @@ type TChatMessagesRes = {
3085
3095
  };
3086
3096
  type TChatMarkSeenRes = string;
3087
3097
  type TChatGetParticipantRes = TConversationEntity;
3098
+ type TMeetingStartRes = TMeetingEntity & {
3099
+ lesson: TLessonEntity;
3100
+ };
3101
+ type TMeetingJoinRes = {
3102
+ meeting: TMeetingEntity;
3103
+ meetingParticipant: TMeetingParticipantEntity;
3104
+ token: string;
3105
+ };
3106
+ type TMeetingLessonDetailRes = TLessonEntity & {
3107
+ class: TClassEntity;
3108
+ tutor: TAccountEntity;
3109
+ student: TAccountEntity;
3110
+ meeting: TMeetingEntity;
3111
+ };
3088
3112
 
3089
- 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, 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, 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 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 TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, 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, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, 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 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 };
3113
+ 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, 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, 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 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 TChatConversations, type TChatConversationsRes, type TChatGetParticipantRes, type TChatListConversationRes, type TChatMarkSeen, type TChatMarkSeenRes, type TChatMessages, type TChatMessagesRes, type TChatNewConversation, type TChatNewConversationRes, type TChatSendMessage, type TChatSendMessageRes, 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, 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 TLessonStudentAllDocuments, type TLessonStudentAllDocumentsRes, type TLessonStudentCompletedAndNotPaidLessonsRes, type TLessonStudentDetailRes, type TLessonStudentDocumentsRes, type TLessonStudentList, type TLessonStudentListRes, type TMeetingEntity, type TMeetingJoinRes, type TMeetingLessonDetailRes, type TMeetingParticipantEntity, 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 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 };