gst-common 1.5.33 → 1.5.35
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 +15 -6
- package/dist/index.d.ts +15 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1682,8 +1682,12 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1682
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1683
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1684
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1685
|
-
files: TFileLessonEntity
|
|
1686
|
-
|
|
1685
|
+
files: (TFileLessonEntity & {
|
|
1686
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1687
|
+
})[];
|
|
1688
|
+
editors: (TEditorEntity & {
|
|
1689
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1690
|
+
})[];
|
|
1687
1691
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1688
1692
|
totalQuestion: number;
|
|
1689
1693
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
@@ -1698,7 +1702,7 @@ type TLessonDocumentsRes = TLessonEntity & {
|
|
|
1698
1702
|
totalQuestion: number;
|
|
1699
1703
|
};
|
|
1700
1704
|
type TLessonStudentDocumentsRes = TLessonEntity & {
|
|
1701
|
-
|
|
1705
|
+
files: TFileLessonEntity[];
|
|
1702
1706
|
editors: TEditorEntity[];
|
|
1703
1707
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1704
1708
|
totalQuestion: number;
|
|
@@ -1786,8 +1790,12 @@ type TClassNotificationUploadRes = TClassNotificationEntity;
|
|
|
1786
1790
|
type TFileDeleteRes = TFileEntity;
|
|
1787
1791
|
type TLessonAllDocumentsRes = {
|
|
1788
1792
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1789
|
-
|
|
1790
|
-
|
|
1793
|
+
files: (TFileLessonEntity & {
|
|
1794
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1795
|
+
})[];
|
|
1796
|
+
editors: (TEditorEntity & {
|
|
1797
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1798
|
+
})[];
|
|
1791
1799
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1792
1800
|
totalQuestion: number;
|
|
1793
1801
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
@@ -1796,13 +1804,14 @@ type TLessonAllDocumentsRes = {
|
|
|
1796
1804
|
totalWaitForGradeQuestion: number;
|
|
1797
1805
|
sessionGroupQuestionTotalQuestion: number;
|
|
1798
1806
|
totalCorrectQuestion: number;
|
|
1807
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1799
1808
|
})[];
|
|
1800
1809
|
})[];
|
|
1801
1810
|
total: number;
|
|
1802
1811
|
};
|
|
1803
1812
|
type TLessonStudentAllDocumentsRes = {
|
|
1804
1813
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1805
|
-
|
|
1814
|
+
files: TFileLessonEntity[];
|
|
1806
1815
|
editors: TEditorEntity[];
|
|
1807
1816
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1808
1817
|
totalQuestion: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1682,8 +1682,12 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1682
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1683
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1684
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1685
|
-
files: TFileLessonEntity
|
|
1686
|
-
|
|
1685
|
+
files: (TFileLessonEntity & {
|
|
1686
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1687
|
+
})[];
|
|
1688
|
+
editors: (TEditorEntity & {
|
|
1689
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1690
|
+
})[];
|
|
1687
1691
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1688
1692
|
totalQuestion: number;
|
|
1689
1693
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
@@ -1698,7 +1702,7 @@ type TLessonDocumentsRes = TLessonEntity & {
|
|
|
1698
1702
|
totalQuestion: number;
|
|
1699
1703
|
};
|
|
1700
1704
|
type TLessonStudentDocumentsRes = TLessonEntity & {
|
|
1701
|
-
|
|
1705
|
+
files: TFileLessonEntity[];
|
|
1702
1706
|
editors: TEditorEntity[];
|
|
1703
1707
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1704
1708
|
totalQuestion: number;
|
|
@@ -1786,8 +1790,12 @@ type TClassNotificationUploadRes = TClassNotificationEntity;
|
|
|
1786
1790
|
type TFileDeleteRes = TFileEntity;
|
|
1787
1791
|
type TLessonAllDocumentsRes = {
|
|
1788
1792
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1789
|
-
|
|
1790
|
-
|
|
1793
|
+
files: (TFileLessonEntity & {
|
|
1794
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1795
|
+
})[];
|
|
1796
|
+
editors: (TEditorEntity & {
|
|
1797
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1798
|
+
})[];
|
|
1791
1799
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1792
1800
|
totalQuestion: number;
|
|
1793
1801
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
@@ -1796,13 +1804,14 @@ type TLessonAllDocumentsRes = {
|
|
|
1796
1804
|
totalWaitForGradeQuestion: number;
|
|
1797
1805
|
sessionGroupQuestionTotalQuestion: number;
|
|
1798
1806
|
totalCorrectQuestion: number;
|
|
1807
|
+
referencesDocument: TDocumentsEntity | null;
|
|
1799
1808
|
})[];
|
|
1800
1809
|
})[];
|
|
1801
1810
|
total: number;
|
|
1802
1811
|
};
|
|
1803
1812
|
type TLessonStudentAllDocumentsRes = {
|
|
1804
1813
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1805
|
-
|
|
1814
|
+
files: TFileLessonEntity[];
|
|
1806
1815
|
editors: TEditorEntity[];
|
|
1807
1816
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1808
1817
|
totalQuestion: number;
|