gst-common 1.4.52 → 1.4.54
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -23,6 +23,7 @@ type TStudentEntity = {
|
|
|
23
23
|
phoneNumber: string | null | null;
|
|
24
24
|
hiddenPhoneNumber: boolean;
|
|
25
25
|
account: TAccountEntity;
|
|
26
|
+
totalHourLearning: number;
|
|
26
27
|
} & BaseEntity;
|
|
27
28
|
type TAccountEntity = {
|
|
28
29
|
id: string;
|
|
@@ -1699,6 +1700,7 @@ type TProgramPublicLearnedProgramRes = {
|
|
|
1699
1700
|
account: TAccountEntity;
|
|
1700
1701
|
totalCompletedHours: number;
|
|
1701
1702
|
totalCompletedLessons: number;
|
|
1703
|
+
class: TClassEntity;
|
|
1702
1704
|
})[];
|
|
1703
1705
|
total: number;
|
|
1704
1706
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ type TStudentEntity = {
|
|
|
23
23
|
phoneNumber: string | null | null;
|
|
24
24
|
hiddenPhoneNumber: boolean;
|
|
25
25
|
account: TAccountEntity;
|
|
26
|
+
totalHourLearning: number;
|
|
26
27
|
} & BaseEntity;
|
|
27
28
|
type TAccountEntity = {
|
|
28
29
|
id: string;
|
|
@@ -1699,6 +1700,7 @@ type TProgramPublicLearnedProgramRes = {
|
|
|
1699
1700
|
account: TAccountEntity;
|
|
1700
1701
|
totalCompletedHours: number;
|
|
1701
1702
|
totalCompletedLessons: number;
|
|
1703
|
+
class: TClassEntity;
|
|
1702
1704
|
})[];
|
|
1703
1705
|
total: number;
|
|
1704
1706
|
};
|