gst-common 1.3.37 → 1.3.38
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
|
@@ -1114,7 +1114,9 @@ type TLessonImportRes = TLessonEntity & {
|
|
|
1114
1114
|
};
|
|
1115
1115
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1116
1116
|
fileLessons: TFileLessonEntity[];
|
|
1117
|
-
groupQuestions: TGroupQuestionEntity
|
|
1117
|
+
groupQuestions: Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1118
|
+
totalQuestion: number;
|
|
1119
|
+
}[];
|
|
1118
1120
|
totalQuestion: number;
|
|
1119
1121
|
};
|
|
1120
1122
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1114,7 +1114,9 @@ type TLessonImportRes = TLessonEntity & {
|
|
|
1114
1114
|
};
|
|
1115
1115
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1116
1116
|
fileLessons: TFileLessonEntity[];
|
|
1117
|
-
groupQuestions: TGroupQuestionEntity
|
|
1117
|
+
groupQuestions: Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1118
|
+
totalQuestion: number;
|
|
1119
|
+
}[];
|
|
1118
1120
|
totalQuestion: number;
|
|
1119
1121
|
};
|
|
1120
1122
|
|