gst-common 1.3.25 → 1.3.27

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
@@ -724,7 +724,6 @@ type TDocumentChangeOrder = {
724
724
  type TGroupQuestionCreate = {
725
725
  title: string;
726
726
  content: string;
727
- programId: string;
728
727
  questions: {
729
728
  content?: string;
730
729
  order: number;
@@ -1072,7 +1071,9 @@ type TDocumentDeleteFileRes = TDocumentsEntity;
1072
1071
  type TDocumentListRes = {
1073
1072
  documents: (TDocumentsEntity & {
1074
1073
  program: TProgramEntity;
1075
- file: TFileEntity;
1074
+ file: TFileEntity | null;
1075
+ groupQuestion: TGroupQuestionEntity | null;
1076
+ totalQuestion: number;
1076
1077
  })[];
1077
1078
  total: number;
1078
1079
  };
package/dist/index.d.ts CHANGED
@@ -724,7 +724,6 @@ type TDocumentChangeOrder = {
724
724
  type TGroupQuestionCreate = {
725
725
  title: string;
726
726
  content: string;
727
- programId: string;
728
727
  questions: {
729
728
  content?: string;
730
729
  order: number;
@@ -1072,7 +1071,9 @@ type TDocumentDeleteFileRes = TDocumentsEntity;
1072
1071
  type TDocumentListRes = {
1073
1072
  documents: (TDocumentsEntity & {
1074
1073
  program: TProgramEntity;
1075
- file: TFileEntity;
1074
+ file: TFileEntity | null;
1075
+ groupQuestion: TGroupQuestionEntity | null;
1076
+ totalQuestion: number;
1076
1077
  })[];
1077
1078
  total: number;
1078
1079
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.3.25",
3
+ "version": "1.3.27",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",