gst-common 1.5.93 → 1.5.95
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 +7 -2
- package/dist/index.d.ts +7 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1955,10 +1955,15 @@ type TLessonAllDocumentsRes = {
|
|
|
1955
1955
|
};
|
|
1956
1956
|
type TLessonStudentAllDocumentsRes = {
|
|
1957
1957
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1958
|
-
files: TFileLessonEntity
|
|
1959
|
-
|
|
1958
|
+
files: (TFileLessonEntity & {
|
|
1959
|
+
isExistingInDocument: boolean;
|
|
1960
|
+
})[];
|
|
1961
|
+
editors: (TEditorEntity & {
|
|
1962
|
+
isExistingInDocument: boolean;
|
|
1963
|
+
})[];
|
|
1960
1964
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1961
1965
|
totalQuestion: number;
|
|
1966
|
+
isExistingInDocument: boolean;
|
|
1962
1967
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1963
1968
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1964
1969
|
sessionGroupQuestionId: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1955,10 +1955,15 @@ type TLessonAllDocumentsRes = {
|
|
|
1955
1955
|
};
|
|
1956
1956
|
type TLessonStudentAllDocumentsRes = {
|
|
1957
1957
|
lessons: (Omit<TLessonEntity, "class"> & {
|
|
1958
|
-
files: TFileLessonEntity
|
|
1959
|
-
|
|
1958
|
+
files: (TFileLessonEntity & {
|
|
1959
|
+
isExistingInDocument: boolean;
|
|
1960
|
+
})[];
|
|
1961
|
+
editors: (TEditorEntity & {
|
|
1962
|
+
isExistingInDocument: boolean;
|
|
1963
|
+
})[];
|
|
1960
1964
|
groupQuestions: (TGroupQuestionEntity & {
|
|
1961
1965
|
totalQuestion: number;
|
|
1966
|
+
isExistingInDocument: boolean;
|
|
1962
1967
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1963
1968
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1964
1969
|
sessionGroupQuestionId: string | null;
|