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 +8 -4
- package/dist/index.d.ts +8 -4
- package/package.json +1 -1
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:
|
|
1403
|
-
|
|
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
|
-
|
|
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:
|
|
1403
|
-
|
|
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
|
-
|
|
1406
|
-
})[];
|
|
1410
|
+
}[];
|
|
1407
1411
|
total: number;
|
|
1408
1412
|
};
|
|
1409
1413
|
type TProposedLearningStudentListRes = {
|