gst-common 1.6.21 → 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 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;
@@ -103,7 +109,6 @@ type TTutorEntity = {
103
109
  type TStudent = {
104
110
  account: TAccountEntity;
105
111
  jobDescription: string | null;
106
- isZaloPhoneNumber: boolean | null;
107
112
  district: TDistrictEntity | null | null;
108
113
  province: TProvinceEntity | null | null;
109
114
  birthDay: string | null | null;
@@ -112,8 +117,6 @@ type TStudent = {
112
117
  totalProgram: number;
113
118
  phoneNumber: string | null | null;
114
119
  hiddenPhoneNumber: boolean;
115
- learningDayOfWeeks: TDayOfWeekEntity[];
116
- studyTimeRange: TTeachingTimeRangeEntity[];
117
120
  } & BaseEntity;
118
121
  type TNotificationEntity = {
119
122
  title: string | null;
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;
@@ -103,7 +109,6 @@ type TTutorEntity = {
103
109
  type TStudent = {
104
110
  account: TAccountEntity;
105
111
  jobDescription: string | null;
106
- isZaloPhoneNumber: boolean | null;
107
112
  district: TDistrictEntity | null | null;
108
113
  province: TProvinceEntity | null | null;
109
114
  birthDay: string | null | null;
@@ -112,8 +117,6 @@ type TStudent = {
112
117
  totalProgram: number;
113
118
  phoneNumber: string | null | null;
114
119
  hiddenPhoneNumber: boolean;
115
- learningDayOfWeeks: TDayOfWeekEntity[];
116
- studyTimeRange: TTeachingTimeRangeEntity[];
117
120
  } & BaseEntity;
118
121
  type TNotificationEntity = {
119
122
  title: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.6.21",
3
+ "version": "1.6.22",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",