gst-common 1.5.70 → 1.5.71

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
@@ -1988,10 +1988,11 @@ type TPostAllMyPostRes = {
1988
1988
  totalComments: number;
1989
1989
  totalUpvote: number;
1990
1990
  hasUpvoted: boolean;
1991
- documents: (TPostDocumentEntity & {
1991
+ documents: (TDocumentsEntity & {
1992
1992
  file: TFileEntity;
1993
1993
  groupQuestion: TGroupQuestionEntity;
1994
1994
  editor: TEditorEntity;
1995
+ referencedDocument: TDocumentsEntity;
1995
1996
  })[];
1996
1997
  })[];
1997
1998
  };
@@ -2021,10 +2022,11 @@ type TPostPublicNewFeedsRes = {
2021
2022
  files: TFileEntity[];
2022
2023
  createdBy: TAccountEntity;
2023
2024
  updatedBy: TAccountEntity;
2024
- documents: (TPostDocumentEntity & {
2025
+ documents: (TDocumentsEntity & {
2025
2026
  file: TFileEntity;
2026
2027
  groupQuestion: TGroupQuestionEntity;
2027
2028
  editor: TEditorEntity;
2029
+ referencedDocument: TDocumentsEntity;
2028
2030
  })[];
2029
2031
  })[];
2030
2032
  total: number;
@@ -2059,10 +2061,11 @@ type TPostAllListPostByAccountRes = {
2059
2061
  posts: (TPostEntity & {
2060
2062
  createdBy: TAccountEntity;
2061
2063
  files: TFileEntity[];
2062
- documents: (TPostDocumentEntity & {
2064
+ documents: (TDocumentsEntity & {
2063
2065
  file: TFileEntity;
2064
2066
  groupQuestion: TGroupQuestionEntity;
2065
2067
  editor: TEditorEntity;
2068
+ referencedDocument: TDocumentsEntity;
2066
2069
  })[];
2067
2070
  hasUpvoted: boolean;
2068
2071
  totalUpvote: number;
package/dist/index.d.ts CHANGED
@@ -1988,10 +1988,11 @@ type TPostAllMyPostRes = {
1988
1988
  totalComments: number;
1989
1989
  totalUpvote: number;
1990
1990
  hasUpvoted: boolean;
1991
- documents: (TPostDocumentEntity & {
1991
+ documents: (TDocumentsEntity & {
1992
1992
  file: TFileEntity;
1993
1993
  groupQuestion: TGroupQuestionEntity;
1994
1994
  editor: TEditorEntity;
1995
+ referencedDocument: TDocumentsEntity;
1995
1996
  })[];
1996
1997
  })[];
1997
1998
  };
@@ -2021,10 +2022,11 @@ type TPostPublicNewFeedsRes = {
2021
2022
  files: TFileEntity[];
2022
2023
  createdBy: TAccountEntity;
2023
2024
  updatedBy: TAccountEntity;
2024
- documents: (TPostDocumentEntity & {
2025
+ documents: (TDocumentsEntity & {
2025
2026
  file: TFileEntity;
2026
2027
  groupQuestion: TGroupQuestionEntity;
2027
2028
  editor: TEditorEntity;
2029
+ referencedDocument: TDocumentsEntity;
2028
2030
  })[];
2029
2031
  })[];
2030
2032
  total: number;
@@ -2059,10 +2061,11 @@ type TPostAllListPostByAccountRes = {
2059
2061
  posts: (TPostEntity & {
2060
2062
  createdBy: TAccountEntity;
2061
2063
  files: TFileEntity[];
2062
- documents: (TPostDocumentEntity & {
2064
+ documents: (TDocumentsEntity & {
2063
2065
  file: TFileEntity;
2064
2066
  groupQuestion: TGroupQuestionEntity;
2065
2067
  editor: TEditorEntity;
2068
+ referencedDocument: TDocumentsEntity;
2066
2069
  })[];
2067
2070
  hasUpvoted: boolean;
2068
2071
  totalUpvote: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.70",
3
+ "version": "1.5.71",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",