gst-common 1.5.31 → 1.5.33
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1134,6 +1134,7 @@ type TProgramRatingPublicList = {
|
|
|
1134
1134
|
} & BasePaginationParams;
|
|
1135
1135
|
type TProgramRatingStudentHasRated = {
|
|
1136
1136
|
programId?: string;
|
|
1137
|
+
accountTutorId?: string;
|
|
1137
1138
|
};
|
|
1138
1139
|
type TProgramRatingStudentCanRate = {
|
|
1139
1140
|
programId?: string;
|
|
@@ -1681,12 +1682,14 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1681
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1682
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1683
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1684
|
-
|
|
1685
|
+
files: TFileLessonEntity[];
|
|
1685
1686
|
editors: TEditorEntity[];
|
|
1686
1687
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1687
1688
|
totalQuestion: number;
|
|
1688
1689
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1689
1690
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1691
|
+
isCreatedByCurrentAccount: boolean;
|
|
1692
|
+
referencesDocumentId: string | null;
|
|
1690
1693
|
sessionGroupQuestionId: string | null;
|
|
1691
1694
|
sessionGroupQuestionsCorrectQuestion: number | null;
|
|
1692
1695
|
sessionGroupQuestionsTotalQuestion: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1134,6 +1134,7 @@ type TProgramRatingPublicList = {
|
|
|
1134
1134
|
} & BasePaginationParams;
|
|
1135
1135
|
type TProgramRatingStudentHasRated = {
|
|
1136
1136
|
programId?: string;
|
|
1137
|
+
accountTutorId?: string;
|
|
1137
1138
|
};
|
|
1138
1139
|
type TProgramRatingStudentCanRate = {
|
|
1139
1140
|
programId?: string;
|
|
@@ -1681,12 +1682,14 @@ type TGroupQuestionDetailRes = TGroupQuestionEntity & {
|
|
|
1681
1682
|
type TGroupQuestionUpdateRes = TGroupQuestionEntity;
|
|
1682
1683
|
type TLessonImportRes = TLessonEntity & {};
|
|
1683
1684
|
type TLessonDocumentsRes = TLessonEntity & {
|
|
1684
|
-
|
|
1685
|
+
files: TFileLessonEntity[];
|
|
1685
1686
|
editors: TEditorEntity[];
|
|
1686
1687
|
groupQuestions: (Pick<TGroupQuestionEntity, "id" | "title"> & {
|
|
1687
1688
|
totalQuestion: number;
|
|
1688
1689
|
sessionGroupQuestionsLastCreatedAt: string | null;
|
|
1689
1690
|
sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
|
|
1691
|
+
isCreatedByCurrentAccount: boolean;
|
|
1692
|
+
referencesDocumentId: string | null;
|
|
1690
1693
|
sessionGroupQuestionId: string | null;
|
|
1691
1694
|
sessionGroupQuestionsCorrectQuestion: number | null;
|
|
1692
1695
|
sessionGroupQuestionsTotalQuestion: number | null;
|