gst-common 1.6.76 → 1.6.77

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
@@ -40,6 +40,11 @@ type TAccountEntity = {
40
40
  avatar: string | null;
41
41
  type: CUSTOMER_TYPE | null;
42
42
  registerMethod: REGISTER_METHOD;
43
+ status: ACCOUNT_STATUS;
44
+ pendingAt: Date;
45
+ completedAt: Date;
46
+ rejectReason: string;
47
+ completedInternalAccount: TInternalAccountEntity | null;
43
48
  password: string | null;
44
49
  username: string;
45
50
  keyForgot: string | null;
@@ -96,17 +101,10 @@ type TTutorEntity = {
96
101
  totalSessions: number;
97
102
  introduction: string | null;
98
103
  shortVideoUrl: string | null;
99
- schoolName: string | null;
100
- schoolStatus: SCHOOL_STATUS | null;
101
- hiddenSchool: boolean;
102
104
  district: TDistrictEntity | null;
103
105
  province: TProvinceEntity | null;
104
- workAt: string | null;
105
106
  birthDay: string | null;
106
- hiddenBirthDay: boolean | null;
107
107
  phoneNumber: string | null;
108
- hiddenPhoneNumber: boolean | null;
109
- hiddenWorkAt: boolean;
110
108
  account: TAccountEntity;
111
109
  } & BaseEntity;
112
110
  type TStudent = {
package/dist/index.d.ts CHANGED
@@ -40,6 +40,11 @@ type TAccountEntity = {
40
40
  avatar: string | null;
41
41
  type: CUSTOMER_TYPE | null;
42
42
  registerMethod: REGISTER_METHOD;
43
+ status: ACCOUNT_STATUS;
44
+ pendingAt: Date;
45
+ completedAt: Date;
46
+ rejectReason: string;
47
+ completedInternalAccount: TInternalAccountEntity | null;
43
48
  password: string | null;
44
49
  username: string;
45
50
  keyForgot: string | null;
@@ -96,17 +101,10 @@ type TTutorEntity = {
96
101
  totalSessions: number;
97
102
  introduction: string | null;
98
103
  shortVideoUrl: string | null;
99
- schoolName: string | null;
100
- schoolStatus: SCHOOL_STATUS | null;
101
- hiddenSchool: boolean;
102
104
  district: TDistrictEntity | null;
103
105
  province: TProvinceEntity | null;
104
- workAt: string | null;
105
106
  birthDay: string | null;
106
- hiddenBirthDay: boolean | null;
107
107
  phoneNumber: string | null;
108
- hiddenPhoneNumber: boolean | null;
109
- hiddenWorkAt: boolean;
110
108
  account: TAccountEntity;
111
109
  } & BaseEntity;
112
110
  type TStudent = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.6.76",
3
+ "version": "1.6.77",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",