gst-common 1.5.32 → 1.5.33
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1682,12 +1682,14 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1682
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1683
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1684
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1685
|
-
|
|
1685
|
+
files: TFileLessonEntity[];
|
|
1686
1686
|
editors: TEditorEntity[];
|
|
1687
1687
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1688
1688
|
totalQuestion: number;
|
|
1689
1689
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1690
1690
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1691
|
+
isCreatedByCurrentAccount: boolean;
|
|
1692
|
+
referencesDocumentId: string | null;
|
|
1691
1693
|
sessionGroupQuestionId: string | null;
|
|
1692
1694
|
sessionGroupQuestionsCorrectQuestion: number | null;
|
|
1693
1695
|
sessionGroupQuestionsTotalQuestion: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1682,12 +1682,14 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1682
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1683
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1684
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1685
|
-
|
|
1685
|
+
files: TFileLessonEntity[];
|
|
1686
1686
|
editors: TEditorEntity[];
|
|
1687
1687
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1688
1688
|
totalQuestion: number;
|
|
1689
1689
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1690
1690
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1691
|
+
isCreatedByCurrentAccount: boolean;
|
|
1692
|
+
referencesDocumentId: string | null;
|
|
1691
1693
|
sessionGroupQuestionId: string | null;
|
|
1692
1694
|
sessionGroupQuestionsCorrectQuestion: number | null;
|
|
1693
1695
|
sessionGroupQuestionsTotalQuestion: number | null;
|