gst-common 1.2.55 → 1.2.56

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
@@ -570,6 +570,7 @@ type TClassNotificationList = {
570
570
  } & BasePaginationParams;
571
571
  type TTutorListStudents = {
572
572
  fullname?: string;
573
+ createdAtSort?: SORT_TYPE;
573
574
  } & BasePaginationParams;
574
575
 
575
576
  type TProgramRegisteredMeTutorEdit = {
@@ -736,12 +737,14 @@ type TTutorListStudentsRes = {
736
737
  students: {
737
738
  studentId: string;
738
739
  studentName: string;
740
+ lastJoinedAt: string;
739
741
  studentAvatar: string | null;
740
742
  phoneNumber: string | null;
741
743
  classes: {
742
744
  classId: string;
743
745
  className: string;
744
746
  classStatus: CLASS_STATUS;
747
+ classCreatedAt: string;
745
748
  }[];
746
749
  }[];
747
750
  total: number;
package/dist/index.d.ts CHANGED
@@ -570,6 +570,7 @@ type TClassNotificationList = {
570
570
  } & BasePaginationParams;
571
571
  type TTutorListStudents = {
572
572
  fullname?: string;
573
+ createdAtSort?: SORT_TYPE;
573
574
  } & BasePaginationParams;
574
575
 
575
576
  type TProgramRegisteredMeTutorEdit = {
@@ -736,12 +737,14 @@ type TTutorListStudentsRes = {
736
737
  students: {
737
738
  studentId: string;
738
739
  studentName: string;
740
+ lastJoinedAt: string;
739
741
  studentAvatar: string | null;
740
742
  phoneNumber: string | null;
741
743
  classes: {
742
744
  classId: string;
743
745
  className: string;
744
746
  classStatus: CLASS_STATUS;
747
+ classCreatedAt: string;
745
748
  }[];
746
749
  }[];
747
750
  total: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.2.55",
3
+ "version": "1.2.56",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",