gst-common 1.3.49 → 1.3.50
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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1162,9 +1162,9 @@ type TLessonDocumentsRes = TLessonEntity & {
|
|
|
1162
1162
|
fileLessons: TFileLessonEntity[];
|
|
1163
1163
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1164
1164
|
totalQuestion: number;
|
|
1165
|
-
sessionGroupQuestionsLastCreatedAt: string;
|
|
1166
|
-
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION;
|
|
1167
|
-
sessionGroupQuestionId: string;
|
|
1165
|
+
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1166
|
+
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1167
|
+
sessionGroupQuestionId: string | null;
|
|
1168
1168
|
})[];
|
|
1169
1169
|
totalQuestion: number;
|
|
1170
1170
|
};
|
|
@@ -1172,9 +1172,9 @@ type TLessonStudentDocumentsRes = TLessonEntity & {
|
|
|
1172
1172
|
fileLessons: TFileLessonEntity[];
|
|
1173
1173
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1174
1174
|
totalQuestion: number;
|
|
1175
|
-
sessionGroupQuestionsLastCreatedAt: string;
|
|
1176
|
-
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION;
|
|
1177
|
-
sessionGroupQuestionId: string;
|
|
1175
|
+
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1176
|
+
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1177
|
+
sessionGroupQuestionId: string | null;
|
|
1178
1178
|
})[];
|
|
1179
1179
|
totalQuestion: number;
|
|
1180
1180
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1162,9 +1162,9 @@ type TLessonDocumentsRes = TLessonEntity & {
|
|
|
1162
1162
|
fileLessons: TFileLessonEntity[];
|
|
1163
1163
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1164
1164
|
totalQuestion: number;
|
|
1165
|
-
sessionGroupQuestionsLastCreatedAt: string;
|
|
1166
|
-
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION;
|
|
1167
|
-
sessionGroupQuestionId: string;
|
|
1165
|
+
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1166
|
+
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1167
|
+
sessionGroupQuestionId: string | null;
|
|
1168
1168
|
})[];
|
|
1169
1169
|
totalQuestion: number;
|
|
1170
1170
|
};
|
|
@@ -1172,9 +1172,9 @@ type TLessonStudentDocumentsRes = TLessonEntity & {
|
|
|
1172
1172
|
fileLessons: TFileLessonEntity[];
|
|
1173
1173
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1174
1174
|
totalQuestion: number;
|
|
1175
|
-
sessionGroupQuestionsLastCreatedAt: string;
|
|
1176
|
-
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION;
|
|
1177
|
-
sessionGroupQuestionId: string;
|
|
1175
|
+
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1176
|
+
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1177
|
+
sessionGroupQuestionId: string | null;
|
|
1178
1178
|
})[];
|
|
1179
1179
|
totalQuestion: number;
|
|
1180
1180
|
};
|