@volcengine/veplayer 1.19.1 → 1.19.2-rc.1
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/index.d.ts +23 -4
- package/index.min.js +2 -2
- package/lite.cjs +2 -2
- package/lite.d.ts +21 -4
- package/lite.esm.mjs +2 -2
- package/lite.min.js +2 -2
- package/package.json +1 -1
- package/plugin/modules/DashAbralgo.mjs +1 -1
- package/plugin/modules/XGVideo.mjs +1 -1
- package/plugin/modules/danmuMask.mjs +1 -1
- package/plugin/modules/danmujs.mjs +1 -1
- package/plugin/modules/dash.mjs +1 -1
- package/plugin/modules/flv.mjs +1 -1
- package/plugin/modules/hls.mjs +1 -1
- package/plugin/modules/hlsEncrypt.mjs +1 -1
- package/plugin/modules/hlsjs.mjs +1 -1
- package/plugin/modules/hlsjsPro.mjs +1 -1
- package/plugin/modules/mp4Encrypt.mjs +1 -1
- package/plugin/modules/preloader.mjs +1 -1
- package/plugin/modules/streamprobe.mjs +1 -1
- package/plugin/modules/vestrategy.mjs +1 -1
- package/plugin/modules/vestrategy_adapt_range.mjs +1 -1
- package/plugin/modules/vestrategy_h265.mjs +1 -1
- package/plugin/modules/vestrategy_preload.mjs +1 -1
package/lite.d.ts
CHANGED
|
@@ -1188,18 +1188,35 @@ export interface LiteDramaVideoInfo {
|
|
|
1188
1188
|
}
|
|
1189
1189
|
/** Short-drama bridge result with only Lite-safe media data. */
|
|
1190
1190
|
export interface LiteDramaInfoResponse {
|
|
1191
|
+
/** {zh} @brief 旧回包的顶层 Native 通参;优先使用 data.tracking_context。 */
|
|
1192
|
+
/** {en} @brief Legacy top-level tracking fields; data.tracking_context takes priority. */
|
|
1193
|
+
tracking_context?: {
|
|
1194
|
+
enter_from?: string;
|
|
1195
|
+
minis_type?: string;
|
|
1196
|
+
minis_id?: string;
|
|
1197
|
+
ttoclid?: string;
|
|
1198
|
+
};
|
|
1191
1199
|
is_success: number | boolean;
|
|
1192
1200
|
error?: LiteDramaInfoError;
|
|
1193
1201
|
data?: {
|
|
1202
|
+
/** {zh} @brief Native 埋点通参;缺失时不报对应字段。 */
|
|
1203
|
+
/** {en} @brief Native tracking fields; omitted fields are not reported. */
|
|
1204
|
+
tracking_context?: LiteDramaInfoResponse["tracking_context"];
|
|
1194
1205
|
status: number;
|
|
1195
1206
|
drama_info: {
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1207
|
+
drama_id?: string;
|
|
1208
|
+
album_id?: string;
|
|
1209
|
+
album_name?: string;
|
|
1210
|
+
episode_total_num?: number;
|
|
1211
|
+
drama_name?: string;
|
|
1212
|
+
album_cover?: string;
|
|
1213
|
+
drama_cover?: string;
|
|
1214
|
+
album_description?: string;
|
|
1215
|
+
drama_description?: string;
|
|
1200
1216
|
};
|
|
1201
1217
|
episode_info: {
|
|
1202
1218
|
episode_id: string;
|
|
1219
|
+
episode_current_num?: number;
|
|
1203
1220
|
episode_name: string;
|
|
1204
1221
|
episode_cover: string;
|
|
1205
1222
|
episode_description: string;
|