gst-common 1.6.20 → 1.6.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -22,8 +22,14 @@ type TStudentEntity = {
|
|
|
22
22
|
phoneNumber: string | null | null;
|
|
23
23
|
hiddenPhoneNumber: boolean;
|
|
24
24
|
account: TAccountEntity;
|
|
25
|
+
expectedFee: number | null;
|
|
25
26
|
totalHourLearning: number;
|
|
27
|
+
studyMethod: PROGRAM_METHOD | null;
|
|
28
|
+
jobDescription: string | null;
|
|
26
29
|
introduction: string | null;
|
|
30
|
+
isZaloPhoneNumber: boolean | null;
|
|
31
|
+
learningDayOfWeeks: TDayOfWeekEntity[];
|
|
32
|
+
studyTimeRange: TTeachingTimeRangeEntity[];
|
|
27
33
|
} & BaseEntity;
|
|
28
34
|
type TAccountEntity = {
|
|
29
35
|
id: string;
|
|
@@ -102,10 +108,13 @@ type TTutorEntity = {
|
|
|
102
108
|
} & BaseEntity;
|
|
103
109
|
type TStudent = {
|
|
104
110
|
account: TAccountEntity;
|
|
111
|
+
jobDescription: string | null;
|
|
105
112
|
district: TDistrictEntity | null | null;
|
|
106
113
|
province: TProvinceEntity | null | null;
|
|
107
114
|
birthDay: string | null | null;
|
|
108
115
|
hiddenBirthDay: boolean;
|
|
116
|
+
totalHourLearning: number;
|
|
117
|
+
totalProgram: number;
|
|
109
118
|
phoneNumber: string | null | null;
|
|
110
119
|
hiddenPhoneNumber: boolean;
|
|
111
120
|
} & BaseEntity;
|
package/dist/index.d.ts
CHANGED
|
@@ -22,8 +22,14 @@ type TStudentEntity = {
|
|
|
22
22
|
phoneNumber: string | null | null;
|
|
23
23
|
hiddenPhoneNumber: boolean;
|
|
24
24
|
account: TAccountEntity;
|
|
25
|
+
expectedFee: number | null;
|
|
25
26
|
totalHourLearning: number;
|
|
27
|
+
studyMethod: PROGRAM_METHOD | null;
|
|
28
|
+
jobDescription: string | null;
|
|
26
29
|
introduction: string | null;
|
|
30
|
+
isZaloPhoneNumber: boolean | null;
|
|
31
|
+
learningDayOfWeeks: TDayOfWeekEntity[];
|
|
32
|
+
studyTimeRange: TTeachingTimeRangeEntity[];
|
|
27
33
|
} & BaseEntity;
|
|
28
34
|
type TAccountEntity = {
|
|
29
35
|
id: string;
|
|
@@ -102,10 +108,13 @@ type TTutorEntity = {
|
|
|
102
108
|
} & BaseEntity;
|
|
103
109
|
type TStudent = {
|
|
104
110
|
account: TAccountEntity;
|
|
111
|
+
jobDescription: string | null;
|
|
105
112
|
district: TDistrictEntity | null | null;
|
|
106
113
|
province: TProvinceEntity | null | null;
|
|
107
114
|
birthDay: string | null | null;
|
|
108
115
|
hiddenBirthDay: boolean;
|
|
116
|
+
totalHourLearning: number;
|
|
117
|
+
totalProgram: number;
|
|
109
118
|
phoneNumber: string | null | null;
|
|
110
119
|
hiddenPhoneNumber: boolean;
|
|
111
120
|
} & BaseEntity;
|