gst-common 1.5.53 → 1.5.54
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 +9 -6
- package/dist/index.d.ts +9 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2118,12 +2118,15 @@ type TTutorPublicListRes = {
|
|
|
2118
2118
|
};
|
|
2119
2119
|
type TDocumentFolderCreateRes = TDocumentFolderEntity;
|
|
2120
2120
|
type TDocumentFolderUpdateRes = TDocumentFolderEntity;
|
|
2121
|
-
type TDocumentFolderListRes =
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2121
|
+
type TDocumentFolderListRes = {
|
|
2122
|
+
list: (TDocumentFolderEntity & {
|
|
2123
|
+
totalEditor: number;
|
|
2124
|
+
totalFile: number;
|
|
2125
|
+
totalSize: number;
|
|
2126
|
+
totalGroupQuestion: number;
|
|
2127
|
+
})[];
|
|
2128
|
+
total: number;
|
|
2129
|
+
};
|
|
2127
2130
|
type TDocumentFolderTreeListRes = (TProgramEntity & {
|
|
2128
2131
|
documentFolders: TDocumentFolderEntity[];
|
|
2129
2132
|
})[];
|
package/dist/index.d.ts
CHANGED
|
@@ -2118,12 +2118,15 @@ type TTutorPublicListRes = {
|
|
|
2118
2118
|
};
|
|
2119
2119
|
type TDocumentFolderCreateRes = TDocumentFolderEntity;
|
|
2120
2120
|
type TDocumentFolderUpdateRes = TDocumentFolderEntity;
|
|
2121
|
-
type TDocumentFolderListRes =
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2121
|
+
type TDocumentFolderListRes = {
|
|
2122
|
+
list: (TDocumentFolderEntity & {
|
|
2123
|
+
totalEditor: number;
|
|
2124
|
+
totalFile: number;
|
|
2125
|
+
totalSize: number;
|
|
2126
|
+
totalGroupQuestion: number;
|
|
2127
|
+
})[];
|
|
2128
|
+
total: number;
|
|
2129
|
+
};
|
|
2127
2130
|
type TDocumentFolderTreeListRes = (TProgramEntity & {
|
|
2128
2131
|
documentFolders: TDocumentFolderEntity[];
|
|
2129
2132
|
})[];
|