gst-common 1.6.20 → 1.6.21

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