@soga/types 0.0.64 → 0.0.66
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-manifest.d.ts +4 -2
- package/dist/record.d.ts +17 -0
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export type SubtitleType = 'srt' | 'vtt' | 'ass' | 'lrc';
|
|
2
2
|
export type ManifestBaiduType = {
|
|
3
3
|
host_id: number;
|
|
4
|
-
info: Record<string,
|
|
4
|
+
info: Record<string, number>;
|
|
5
5
|
};
|
|
6
|
-
export type ManifestAliType =
|
|
6
|
+
export type ManifestAliType = {
|
|
7
|
+
host_id: number;
|
|
8
|
+
info: Record<string, string>;
|
|
7
9
|
drive_id: string;
|
|
8
10
|
};
|
|
9
11
|
export type ManifestPartsType = Record<string, {
|
package/dist/record.d.ts
CHANGED
|
@@ -105,4 +105,21 @@ export type RecordDetail = RecordCommonFields & {
|
|
|
105
105
|
name: string;
|
|
106
106
|
}[];
|
|
107
107
|
};
|
|
108
|
+
export type CloudInfoField = {
|
|
109
|
+
id: number;
|
|
110
|
+
hosts: {
|
|
111
|
+
ali?: {
|
|
112
|
+
id: number;
|
|
113
|
+
name: string;
|
|
114
|
+
drive_id: string;
|
|
115
|
+
file_id: string;
|
|
116
|
+
};
|
|
117
|
+
baidu?: {
|
|
118
|
+
id: number;
|
|
119
|
+
name: string;
|
|
120
|
+
fs_id: number;
|
|
121
|
+
path: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
108
125
|
export {};
|