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 +8 -4
- package/dist/index.d.ts +8 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1411,11 +1411,15 @@ type TProposedLearningListRes = {
|
|
|
1411
1411
|
total: number;
|
|
1412
1412
|
};
|
|
1413
1413
|
type TProposedLearningStudentListRes = {
|
|
1414
|
-
list:
|
|
1415
|
-
|
|
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
|
-
|
|
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:
|
|
1415
|
-
|
|
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
|
-
|
|
1418
|
-
})[];
|
|
1422
|
+
}[];
|
|
1419
1423
|
total: number;
|
|
1420
1424
|
};
|
|
1421
1425
|
type TProposedLearningDetailRes = TProposedLearningEntity & {
|