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 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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.3.49",
3
+ "version": "1.3.50",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",