gst-common 1.5.69 → 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
@@ -1353,7 +1353,6 @@ type TPostAllShareDocument = {
1353
1353
  documents: {
1354
1354
  documentId: string;
1355
1355
  order: number;
1356
- name: string;
1357
1356
  }[];
1358
1357
  };
1359
1358
  type TStudentDocumentGetByDocuments = {
@@ -1989,10 +1988,11 @@ type TPostAllMyPostRes = {
1989
1988
  totalComments: number;
1990
1989
  totalUpvote: number;
1991
1990
  hasUpvoted: boolean;
1992
- documents: (TPostDocumentEntity & {
1991
+ documents: (TDocumentsEntity & {
1993
1992
  file: TFileEntity;
1994
1993
  groupQuestion: TGroupQuestionEntity;
1995
1994
  editor: TEditorEntity;
1995
+ referencedDocument: TDocumentsEntity;
1996
1996
  })[];
1997
1997
  })[];
1998
1998
  };
@@ -2022,10 +2022,11 @@ type TPostPublicNewFeedsRes = {
2022
2022
  files: TFileEntity[];
2023
2023
  createdBy: TAccountEntity;
2024
2024
  updatedBy: TAccountEntity;
2025
- documents: (TPostDocumentEntity & {
2025
+ documents: (TDocumentsEntity & {
2026
2026
  file: TFileEntity;
2027
2027
  groupQuestion: TGroupQuestionEntity;
2028
2028
  editor: TEditorEntity;
2029
+ referencedDocument: TDocumentsEntity;
2029
2030
  })[];
2030
2031
  })[];
2031
2032
  total: number;
@@ -2060,10 +2061,11 @@ type TPostAllListPostByAccountRes = {
2060
2061
  posts: (TPostEntity & {
2061
2062
  createdBy: TAccountEntity;
2062
2063
  files: TFileEntity[];
2063
- documents: (TPostDocumentEntity & {
2064
+ documents: (TDocumentsEntity & {
2064
2065
  file: TFileEntity;
2065
2066
  groupQuestion: TGroupQuestionEntity;
2066
2067
  editor: TEditorEntity;
2068
+ referencedDocument: TDocumentsEntity;
2067
2069
  })[];
2068
2070
  hasUpvoted: boolean;
2069
2071
  totalUpvote: number;
package/dist/index.d.ts CHANGED
@@ -1353,7 +1353,6 @@ type TPostAllShareDocument = {
1353
1353
  documents: {
1354
1354
  documentId: string;
1355
1355
  order: number;
1356
- name: string;
1357
1356
  }[];
1358
1357
  };
1359
1358
  type TStudentDocumentGetByDocuments = {
@@ -1989,10 +1988,11 @@ type TPostAllMyPostRes = {
1989
1988
  totalComments: number;
1990
1989
  totalUpvote: number;
1991
1990
  hasUpvoted: boolean;
1992
- documents: (TPostDocumentEntity & {
1991
+ documents: (TDocumentsEntity & {
1993
1992
  file: TFileEntity;
1994
1993
  groupQuestion: TGroupQuestionEntity;
1995
1994
  editor: TEditorEntity;
1995
+ referencedDocument: TDocumentsEntity;
1996
1996
  })[];
1997
1997
  })[];
1998
1998
  };
@@ -2022,10 +2022,11 @@ type TPostPublicNewFeedsRes = {
2022
2022
  files: TFileEntity[];
2023
2023
  createdBy: TAccountEntity;
2024
2024
  updatedBy: TAccountEntity;
2025
- documents: (TPostDocumentEntity & {
2025
+ documents: (TDocumentsEntity & {
2026
2026
  file: TFileEntity;
2027
2027
  groupQuestion: TGroupQuestionEntity;
2028
2028
  editor: TEditorEntity;
2029
+ referencedDocument: TDocumentsEntity;
2029
2030
  })[];
2030
2031
  })[];
2031
2032
  total: number;
@@ -2060,10 +2061,11 @@ type TPostAllListPostByAccountRes = {
2060
2061
  posts: (TPostEntity & {
2061
2062
  createdBy: TAccountEntity;
2062
2063
  files: TFileEntity[];
2063
- documents: (TPostDocumentEntity & {
2064
+ documents: (TDocumentsEntity & {
2064
2065
  file: TFileEntity;
2065
2066
  groupQuestion: TGroupQuestionEntity;
2066
2067
  editor: TEditorEntity;
2068
+ referencedDocument: TDocumentsEntity;
2067
2069
  })[];
2068
2070
  hasUpvoted: boolean;
2069
2071
  totalUpvote: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.69",
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",