gst-common 1.5.63 → 1.5.64

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
@@ -191,6 +191,7 @@ type TFileEntity = {
191
191
  type TGroupQuestionEntity = {
192
192
  title: string;
193
193
  content: string;
194
+ totalQuestion?: number;
194
195
  } & BaseEntity;
195
196
  type TQuestionEntity = {
196
197
  content: string;
@@ -1977,9 +1978,7 @@ type TPostAllMyPostRes = {
1977
1978
  hasUpvoted: boolean;
1978
1979
  documents: (TPostDocumentEntity & {
1979
1980
  file: TFileEntity;
1980
- groupQuestion: {
1981
- totalQuestion: number;
1982
- } & TGroupQuestionEntity;
1981
+ groupQuestion: TGroupQuestionEntity;
1983
1982
  editor: TEditorEntity;
1984
1983
  })[];
1985
1984
  })[];
@@ -2012,9 +2011,7 @@ type TPostPublicNewFeedsRes = {
2012
2011
  updatedBy: TAccountEntity;
2013
2012
  documents: (TPostDocumentEntity & {
2014
2013
  file: TFileEntity;
2015
- groupQuestion: {
2016
- totalQuestion: number;
2017
- } & TGroupQuestionEntity;
2014
+ groupQuestion: TGroupQuestionEntity;
2018
2015
  editor: TEditorEntity;
2019
2016
  })[];
2020
2017
  })[];
package/dist/index.d.ts CHANGED
@@ -191,6 +191,7 @@ type TFileEntity = {
191
191
  type TGroupQuestionEntity = {
192
192
  title: string;
193
193
  content: string;
194
+ totalQuestion?: number;
194
195
  } & BaseEntity;
195
196
  type TQuestionEntity = {
196
197
  content: string;
@@ -1977,9 +1978,7 @@ type TPostAllMyPostRes = {
1977
1978
  hasUpvoted: boolean;
1978
1979
  documents: (TPostDocumentEntity & {
1979
1980
  file: TFileEntity;
1980
- groupQuestion: {
1981
- totalQuestion: number;
1982
- } & TGroupQuestionEntity;
1981
+ groupQuestion: TGroupQuestionEntity;
1983
1982
  editor: TEditorEntity;
1984
1983
  })[];
1985
1984
  })[];
@@ -2012,9 +2011,7 @@ type TPostPublicNewFeedsRes = {
2012
2011
  updatedBy: TAccountEntity;
2013
2012
  documents: (TPostDocumentEntity & {
2014
2013
  file: TFileEntity;
2015
- groupQuestion: {
2016
- totalQuestion: number;
2017
- } & TGroupQuestionEntity;
2014
+ groupQuestion: TGroupQuestionEntity;
2018
2015
  editor: TEditorEntity;
2019
2016
  })[];
2020
2017
  })[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.63",
3
+ "version": "1.5.64",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",