gst-common 1.4.76 → 1.4.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
@@ -1411,11 +1411,15 @@ type TProposedLearningListRes = {
1411
1411
  total: number;
1412
1412
  };
1413
1413
  type TProposedLearningStudentListRes = {
1414
- list: (TProposedLearningEntity & {
1415
- hasPaid: boolean;
1414
+ list: {
1415
+ id: string;
1416
+ title: string;
1417
+ createdAt: string;
1418
+ updatedAt: string;
1419
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
1420
+ totalFee: number;
1416
1421
  totalLessons: number;
1417
- totalTuition: number;
1418
- })[];
1422
+ }[];
1419
1423
  total: number;
1420
1424
  };
1421
1425
  type TProposedLearningDetailRes = TProposedLearningEntity & {
package/dist/index.d.ts CHANGED
@@ -1411,11 +1411,15 @@ type TProposedLearningListRes = {
1411
1411
  total: number;
1412
1412
  };
1413
1413
  type TProposedLearningStudentListRes = {
1414
- list: (TProposedLearningEntity & {
1415
- hasPaid: boolean;
1414
+ list: {
1415
+ id: string;
1416
+ title: string;
1417
+ createdAt: string;
1418
+ updatedAt: string;
1419
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
1420
+ totalFee: number;
1416
1421
  totalLessons: number;
1417
- totalTuition: number;
1418
- })[];
1422
+ }[];
1419
1423
  total: number;
1420
1424
  };
1421
1425
  type TProposedLearningDetailRes = TProposedLearningEntity & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.4.76",
3
+ "version": "1.4.77",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",