gst-common 1.5.76 → 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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1363,6 +1363,7 @@ type TPostAllUpdateShareDocument = {
|
|
|
1363
1363
|
} & Partial<TPostAllShareDocument>;
|
|
1364
1364
|
type TStudentDocumentFolderImport = {
|
|
1365
1365
|
documentFolderName: string;
|
|
1366
|
+
postId: string;
|
|
1366
1367
|
documentOrders: {
|
|
1367
1368
|
documentId: string;
|
|
1368
1369
|
order: number;
|
|
@@ -2001,6 +2002,8 @@ type TPostAllMyPostRes = {
|
|
|
2001
2002
|
total: number;
|
|
2002
2003
|
posts: (TPostEntity & {
|
|
2003
2004
|
files: TFileEntity[];
|
|
2005
|
+
totalImported: number;
|
|
2006
|
+
hasImported: boolean;
|
|
2004
2007
|
totalComments: number;
|
|
2005
2008
|
totalUpvote: number;
|
|
2006
2009
|
hasUpvoted: boolean;
|
|
@@ -2034,6 +2037,8 @@ type TPostPublicNewFeedsRes = {
|
|
|
2034
2037
|
posts: (TPostEntity & {
|
|
2035
2038
|
totalUpvote: number;
|
|
2036
2039
|
totalComments: number;
|
|
2040
|
+
totalImported: number;
|
|
2041
|
+
hasImported: boolean;
|
|
2037
2042
|
hasUpvoted: boolean;
|
|
2038
2043
|
files: TFileEntity[];
|
|
2039
2044
|
createdBy: TAccountEntity;
|
|
@@ -2084,6 +2089,8 @@ type TPostAllListPostByAccountRes = {
|
|
|
2084
2089
|
referencedDocument: TDocumentsEntity;
|
|
2085
2090
|
})[];
|
|
2086
2091
|
hasUpvoted: boolean;
|
|
2092
|
+
totalImported: number;
|
|
2093
|
+
hasImported: boolean;
|
|
2087
2094
|
totalUpvote: number;
|
|
2088
2095
|
totalComment: number;
|
|
2089
2096
|
})[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1363,6 +1363,7 @@ type TPostAllUpdateShareDocument = {
|
|
|
1363
1363
|
} & Partial<TPostAllShareDocument>;
|
|
1364
1364
|
type TStudentDocumentFolderImport = {
|
|
1365
1365
|
documentFolderName: string;
|
|
1366
|
+
postId: string;
|
|
1366
1367
|
documentOrders: {
|
|
1367
1368
|
documentId: string;
|
|
1368
1369
|
order: number;
|
|
@@ -2001,6 +2002,8 @@ type TPostAllMyPostRes = {
|
|
|
2001
2002
|
total: number;
|
|
2002
2003
|
posts: (TPostEntity & {
|
|
2003
2004
|
files: TFileEntity[];
|
|
2005
|
+
totalImported: number;
|
|
2006
|
+
hasImported: boolean;
|
|
2004
2007
|
totalComments: number;
|
|
2005
2008
|
totalUpvote: number;
|
|
2006
2009
|
hasUpvoted: boolean;
|
|
@@ -2034,6 +2037,8 @@ type TPostPublicNewFeedsRes = {
|
|
|
2034
2037
|
posts: (TPostEntity & {
|
|
2035
2038
|
totalUpvote: number;
|
|
2036
2039
|
totalComments: number;
|
|
2040
|
+
totalImported: number;
|
|
2041
|
+
hasImported: boolean;
|
|
2037
2042
|
hasUpvoted: boolean;
|
|
2038
2043
|
files: TFileEntity[];
|
|
2039
2044
|
createdBy: TAccountEntity;
|
|
@@ -2084,6 +2089,8 @@ type TPostAllListPostByAccountRes = {
|
|
|
2084
2089
|
referencedDocument: TDocumentsEntity;
|
|
2085
2090
|
})[];
|
|
2086
2091
|
hasUpvoted: boolean;
|
|
2092
|
+
totalImported: number;
|
|
2093
|
+
hasImported: boolean;
|
|
2087
2094
|
totalUpvote: number;
|
|
2088
2095
|
totalComment: number;
|
|
2089
2096
|
})[];
|