gst-common 1.5.50 → 1.5.51
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 +6 -9
- package/dist/index.d.ts +6 -9
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2106,15 +2106,12 @@ type TTutorPublicListRes = {
|
|
|
2106
2106
|
};
|
|
2107
2107
|
type TDocumentFolderCreateRes = TDocumentFolderEntity;
|
|
2108
2108
|
type TDocumentFolderUpdateRes = TDocumentFolderEntity;
|
|
2109
|
-
type TDocumentFolderListRes = {
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
})[];
|
|
2116
|
-
total: number;
|
|
2117
|
-
};
|
|
2109
|
+
type TDocumentFolderListRes = (TDocumentFolderEntity & {
|
|
2110
|
+
totalEditor: number;
|
|
2111
|
+
totalFile: number;
|
|
2112
|
+
totalSize: number;
|
|
2113
|
+
totalGroupQuestion: number;
|
|
2114
|
+
})[];
|
|
2118
2115
|
type TDocumentFolderTreeListRes = (TProgramEntity & {
|
|
2119
2116
|
documentFolders: TDocumentFolderEntity[];
|
|
2120
2117
|
})[];
|
package/dist/index.d.ts
CHANGED
|
@@ -2106,15 +2106,12 @@ type TTutorPublicListRes = {
|
|
|
2106
2106
|
};
|
|
2107
2107
|
type TDocumentFolderCreateRes = TDocumentFolderEntity;
|
|
2108
2108
|
type TDocumentFolderUpdateRes = TDocumentFolderEntity;
|
|
2109
|
-
type TDocumentFolderListRes = {
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
})[];
|
|
2116
|
-
total: number;
|
|
2117
|
-
};
|
|
2109
|
+
type TDocumentFolderListRes = (TDocumentFolderEntity & {
|
|
2110
|
+
totalEditor: number;
|
|
2111
|
+
totalFile: number;
|
|
2112
|
+
totalSize: number;
|
|
2113
|
+
totalGroupQuestion: number;
|
|
2114
|
+
})[];
|
|
2118
2115
|
type TDocumentFolderTreeListRes = (TProgramEntity & {
|
|
2119
2116
|
documentFolders: TDocumentFolderEntity[];
|
|
2120
2117
|
})[];
|