@soga/types 0.0.5 → 0.0.6
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/record.d.ts +10 -0
- package/package.json +1 -1
package/dist/record.d.ts
CHANGED
|
@@ -202,6 +202,11 @@ export type RecordDetail = {
|
|
|
202
202
|
isdir: number;
|
|
203
203
|
file_id: string;
|
|
204
204
|
drive_id: string;
|
|
205
|
+
account_level: string;
|
|
206
|
+
account_name: string;
|
|
207
|
+
avatar_url: string;
|
|
208
|
+
openPath: string;
|
|
209
|
+
vip_type: number;
|
|
205
210
|
};
|
|
206
211
|
baidu: {
|
|
207
212
|
id: number;
|
|
@@ -210,6 +215,11 @@ export type RecordDetail = {
|
|
|
210
215
|
path: string;
|
|
211
216
|
fs_id: number;
|
|
212
217
|
isdir: number;
|
|
218
|
+
account_level: string;
|
|
219
|
+
account_name: string;
|
|
220
|
+
avatar_url: string;
|
|
221
|
+
openPath: string;
|
|
222
|
+
vip_type: number;
|
|
213
223
|
};
|
|
214
224
|
};
|
|
215
225
|
config: {
|