gst-common 1.5.77 → 1.5.78

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
@@ -2002,6 +2002,8 @@ type TPostAllMyPostRes = {
2002
2002
  total: number;
2003
2003
  posts: (TPostEntity & {
2004
2004
  files: TFileEntity[];
2005
+ totalImported: number;
2006
+ hasImported: boolean;
2005
2007
  totalComments: number;
2006
2008
  totalUpvote: number;
2007
2009
  hasUpvoted: boolean;
@@ -2035,6 +2037,8 @@ type TPostPublicNewFeedsRes = {
2035
2037
  posts: (TPostEntity & {
2036
2038
  totalUpvote: number;
2037
2039
  totalComments: number;
2040
+ totalImported: number;
2041
+ hasImported: boolean;
2038
2042
  hasUpvoted: boolean;
2039
2043
  files: TFileEntity[];
2040
2044
  createdBy: TAccountEntity;
@@ -2085,6 +2089,8 @@ type TPostAllListPostByAccountRes = {
2085
2089
  referencedDocument: TDocumentsEntity;
2086
2090
  })[];
2087
2091
  hasUpvoted: boolean;
2092
+ totalImported: number;
2093
+ hasImported: boolean;
2088
2094
  totalUpvote: number;
2089
2095
  totalComment: number;
2090
2096
  })[];
package/dist/index.d.ts CHANGED
@@ -2002,6 +2002,8 @@ type TPostAllMyPostRes = {
2002
2002
  total: number;
2003
2003
  posts: (TPostEntity & {
2004
2004
  files: TFileEntity[];
2005
+ totalImported: number;
2006
+ hasImported: boolean;
2005
2007
  totalComments: number;
2006
2008
  totalUpvote: number;
2007
2009
  hasUpvoted: boolean;
@@ -2035,6 +2037,8 @@ type TPostPublicNewFeedsRes = {
2035
2037
  posts: (TPostEntity & {
2036
2038
  totalUpvote: number;
2037
2039
  totalComments: number;
2040
+ totalImported: number;
2041
+ hasImported: boolean;
2038
2042
  hasUpvoted: boolean;
2039
2043
  files: TFileEntity[];
2040
2044
  createdBy: TAccountEntity;
@@ -2085,6 +2089,8 @@ type TPostAllListPostByAccountRes = {
2085
2089
  referencedDocument: TDocumentsEntity;
2086
2090
  })[];
2087
2091
  hasUpvoted: boolean;
2092
+ totalImported: number;
2093
+ hasImported: boolean;
2088
2094
  totalUpvote: number;
2089
2095
  totalComment: number;
2090
2096
  })[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.77",
3
+ "version": "1.5.78",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",