gst-common 1.4.75 → 1.4.76

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
@@ -1399,11 +1399,15 @@ type TLessonStudentCompletedAndNotPaidLessonsRes = (TLessonEntity & {
1399
1399
  })[];
1400
1400
  type TProposedLearningCreateRes = TProposedLearningEntity;
1401
1401
  type TProposedLearningListRes = {
1402
- list: (TProposedLearningEntity & {
1403
- hasPaid: boolean;
1402
+ list: {
1403
+ id: string;
1404
+ title: string;
1405
+ createdAt: string;
1406
+ updatedAt: string;
1407
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
1408
+ totalFee: number;
1404
1409
  totalLessons: number;
1405
- totalTuition: number;
1406
- })[];
1410
+ }[];
1407
1411
  total: number;
1408
1412
  };
1409
1413
  type TProposedLearningStudentListRes = {
package/dist/index.d.ts CHANGED
@@ -1399,11 +1399,15 @@ type TLessonStudentCompletedAndNotPaidLessonsRes = (TLessonEntity & {
1399
1399
  })[];
1400
1400
  type TProposedLearningCreateRes = TProposedLearningEntity;
1401
1401
  type TProposedLearningListRes = {
1402
- list: (TProposedLearningEntity & {
1403
- hasPaid: boolean;
1402
+ list: {
1403
+ id: string;
1404
+ title: string;
1405
+ createdAt: string;
1406
+ updatedAt: string;
1407
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
1408
+ totalFee: number;
1404
1409
  totalLessons: number;
1405
- totalTuition: number;
1406
- })[];
1410
+ }[];
1407
1411
  total: number;
1408
1412
  };
1409
1413
  type TProposedLearningStudentListRes = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.4.75",
3
+ "version": "1.4.76",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",