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 CHANGED
@@ -2118,12 +2118,15 @@ type TTutorPublicListRes = {
2118
2118
  };
2119
2119
  type TDocumentFolderCreateRes = TDocumentFolderEntity;
2120
2120
  type TDocumentFolderUpdateRes = TDocumentFolderEntity;
2121
- type TDocumentFolderListRes = (TDocumentFolderEntity & {
2122
- totalEditor: number;
2123
- totalFile: number;
2124
- totalSize: number;
2125
- totalGroupQuestion: number;
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 = (TDocumentFolderEntity & {
2122
- totalEditor: number;
2123
- totalFile: number;
2124
- totalSize: number;
2125
- totalGroupQuestion: number;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.53",
3
+ "version": "1.5.54",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",