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 CHANGED
@@ -1955,10 +1955,15 @@ type TLessonAllDocumentsRes = {
1955
1955
  };
1956
1956
  type TLessonStudentAllDocumentsRes = {
1957
1957
  lessons: (Omit<TLessonEntity, "class"> & {
1958
- files: TFileLessonEntity[];
1959
- editors: TEditorEntity[];
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
- editors: TEditorEntity[];
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.93",
3
+ "version": "1.5.95",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",