@ikenxuan/amagi 5.2.0 → 5.4.0

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.
@@ -5,59 +5,59 @@ import express__default, { Router, RequestHandler } from 'express';
5
5
  import { ChalkInstance } from 'chalk';
6
6
 
7
7
  /**
8
- * @description 视频信息参数类型
8
+ * 视频信息参数类型
9
9
  */
10
10
  type BilibiliVideoParams = BilibiliMethodOptionsMap['VideoInfoParams'];
11
11
  /**
12
- * @description 视频下载参数类型
12
+ * 视频下载参数类型
13
13
  */
14
14
  type BilibiliVideoDownloadParams = BilibiliMethodOptionsMap['VideoStreamParams'];
15
15
  /**
16
- * @description 评论参数类型
16
+ * 评论参数类型
17
17
  */
18
18
  type BilibiliCommentParams = BilibiliMethodOptionsMap['CommentParams'];
19
19
  /**
20
- * @description 用户信息参数类型
20
+ * 用户信息参数类型
21
21
  */
22
22
  type BilibiliUserParams = BilibiliMethodOptionsMap['UserParams'];
23
23
  /**
24
- * @description 表情包参数类型
24
+ * 表情包参数类型
25
25
  */
26
26
  type BilibiliEmojiParams = BilibiliMethodOptionsMap['EmojiParams'];
27
27
  /**
28
- * @description 番剧信息参数类型
28
+ * 番剧信息参数类型
29
29
  */
30
30
  type BilibiliBangumiInfoParams = BilibiliMethodOptionsMap['BangumiInfoParams'];
31
31
  /**
32
- * @description 番剧下载参数类型
32
+ * 番剧下载参数类型
33
33
  */
34
34
  type BilibiliBangumiStreamParams = BilibiliMethodOptionsMap['BangumiStreamParams'];
35
35
  /**
36
- * @description 动态信息参数类型
36
+ * 动态信息参数类型
37
37
  */
38
38
  type BilibiliDynamicParams = BilibiliMethodOptionsMap['DynamicParams'];
39
39
  /**
40
- * @description 直播间参数类型
40
+ * 直播间参数类型
41
41
  */
42
42
  type BilibiliLiveParams = BilibiliMethodOptionsMap['LiveRoomParams'];
43
43
  /**
44
- * @description 登录参数类型
44
+ * 登录参数类型
45
45
  */
46
46
  type BilibiliLoginParams = BilibiliMethodOptionsMap['LoginBaseInfoParams'];
47
47
  /**
48
- * @description 二维码获取参数类型
48
+ * 二维码获取参数类型
49
49
  */
50
50
  type BilibiliQrcodeParams = BilibiliMethodOptionsMap['GetQrcodeParams'];
51
51
  /**
52
- * @description 二维码状态参数类型
52
+ * 二维码状态参数类型
53
53
  */
54
54
  type BilibiliQrcodeStatusParams = BilibiliMethodOptionsMap['QrcodeParams'];
55
55
  /**
56
- * @description AV号转BV号参数类型
56
+ * AV号转BV号参数类型
57
57
  */
58
58
  type BilibiliAv2BvParams = BilibiliMethodOptionsMap['Av2BvParams'];
59
59
  /**
60
- * @description BV号转AV号参数类型
60
+ * BV号转AV号参数类型
61
61
  */
62
62
  type BilibiliBv2AvParams = BilibiliMethodOptionsMap['Bv2AvParams'];
63
63
  declare const BilibiliVideoParamsSchema: z.ZodType<BilibiliVideoParams>;
@@ -244,7 +244,7 @@ interface DouyinMethodOptionsMap {
244
244
  sec_uid: string;
245
245
  };
246
246
  WorkParams: {
247
- methodType: '视频作品数据' | '图集作品数据' | '合辑作品数据' | '聚合解析';
247
+ methodType: '视频作品数据' | '图集作品数据' | '合辑作品数据' | '聚合解析' | '文字作品数据';
248
248
  /** 视频ID、图集ID、合辑ID */
249
249
  aweme_id: string;
250
250
  };
@@ -299,6 +299,26 @@ interface DouyinMethodOptionsMap {
299
299
  EmojiProParams: {
300
300
  methodType: '动态表情数据';
301
301
  };
302
+ DanmakuParams: {
303
+ methodType: '弹幕数据';
304
+ /** 视频ID */
305
+ aweme_id: string;
306
+ /**
307
+ * 弹幕查询的开始时间(毫秒)
308
+ * 例如:设置为5000表示从视频第5秒开始获取弹幕
309
+ * 不设置则从视频开头(0秒)开始获取
310
+ * @default 0
311
+ */
312
+ start_time?: number;
313
+ /**
314
+ * 弹幕查询的结束时间(毫秒)
315
+ * 例如:设置为10000表示获取到视频第10秒的弹幕
316
+ * 不设置则获取到视频结束
317
+ */
318
+ end_time?: number;
319
+ /** 视频总时长 */
320
+ duration: number;
321
+ };
302
322
  VideoWorkParams: {
303
323
  methodType: '视频作品数据';
304
324
  /** 视频ID */
@@ -317,45 +337,49 @@ interface DouyinMethodOptionsMap {
317
337
  }
318
338
 
319
339
  /**
320
- * @description 抖音视频作品等请求参数
340
+ * 抖音视频作品等请求参数
321
341
  */
322
342
  type DouyinWorkParams = DouyinMethodOptionsMap['WorkParams'];
323
343
  /**
324
- * @description 抖音评论数据请求参数
344
+ * 抖音评论数据请求参数
325
345
  */
326
346
  type DouyinCommentParams = DouyinMethodOptionsMap['CommentParams'];
327
347
  /**
328
- * @description 抖音搜索相关请求参数
348
+ * 抖音搜索相关请求参数
329
349
  */
330
350
  type DouyinSearchParams = DouyinMethodOptionsMap['SearchParams'];
331
351
  /**
332
- * @description 抖音指定评论回复数据请求参数
352
+ * 抖音指定评论回复数据请求参数
333
353
  */
334
354
  type DouyinCommentReplyParams = DouyinMethodOptionsMap['CommentReplyParams'];
335
355
  /**
336
- * @description 抖音用户相关请求参数
356
+ * 抖音用户相关请求参数
337
357
  */
338
358
  type DouyinUserParams = DouyinMethodOptionsMap['UserParams'];
339
359
  /**
340
- * @description 抖音音乐数据请求参数
360
+ * 抖音音乐数据请求参数
341
361
  */
342
362
  type DouyinMusicParams = DouyinMethodOptionsMap['MusicParams'];
343
363
  /**
344
- * @description 抖音直播间信息请求参数
364
+ * 抖音直播间信息请求参数
345
365
  */
346
366
  type DouyinLiveRoomParams = DouyinMethodOptionsMap['LiveRoomParams'];
347
367
  /**
348
- * @description 抖音申请二维码请求参数
368
+ * 抖音申请二维码请求参数
349
369
  */
350
370
  type DouyinQrcodeParams = DouyinMethodOptionsMap['QrcodeParams'];
351
371
  /**
352
- * @description 抖音Emoji数据请求参数
372
+ * 抖音Emoji数据请求参数
353
373
  */
354
374
  type DouyinEmojiListParams = DouyinMethodOptionsMap['EmojiListParams'];
355
375
  /**
356
- * @description 抖音动态表情数据请求参数
376
+ * 抖音动态表情数据请求参数
357
377
  */
358
378
  type DouyinEmojiProParams = DouyinMethodOptionsMap['EmojiProParams'];
379
+ /**
380
+ * 抖音弹幕数据请求参数
381
+ */
382
+ type DouyinDanmakuParams = DouyinMethodOptionsMap['DanmakuParams'];
359
383
  declare const DouyinWorkParamsSchema: z.ZodType<DouyinWorkParams>;
360
384
  declare const DouyinCommentParamsSchema: z.ZodType<DouyinCommentParams>;
361
385
  declare const DouyinSearchParamsSchema: z.ZodType<DouyinSearchParams>;
@@ -365,33 +389,41 @@ declare const DouyinMusicParamsSchema: z.ZodType<DouyinMusicParams>;
365
389
  declare const DouyinQrcodeParamsSchema: z.ZodType<DouyinQrcodeParams>;
366
390
  declare const DouyinEmojiListParamsSchema: z.ZodType<DouyinEmojiListParams>;
367
391
  declare const DouyinEmojiProParamsSchema: z.ZodType<DouyinEmojiProParams>;
392
+ declare const DouyinDanmakuParamsSchema: z.ZodType<DouyinDanmakuParams>;
368
393
  declare const DouyinValidationSchemas: {
394
+ readonly 文字作品数据: z.ZodType<{
395
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
396
+ aweme_id: string;
397
+ }, z.ZodTypeDef, {
398
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
399
+ aweme_id: string;
400
+ }>;
369
401
  readonly 聚合解析: z.ZodType<{
370
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
402
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
371
403
  aweme_id: string;
372
404
  }, z.ZodTypeDef, {
373
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
405
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
374
406
  aweme_id: string;
375
407
  }>;
376
408
  readonly 视频作品数据: z.ZodType<{
377
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
409
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
378
410
  aweme_id: string;
379
411
  }, z.ZodTypeDef, {
380
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
412
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
381
413
  aweme_id: string;
382
414
  }>;
383
415
  readonly 图集作品数据: z.ZodType<{
384
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
416
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
385
417
  aweme_id: string;
386
418
  }, z.ZodTypeDef, {
387
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
419
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
388
420
  aweme_id: string;
389
421
  }>;
390
422
  readonly 合辑作品数据: z.ZodType<{
391
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
423
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
392
424
  aweme_id: string;
393
425
  }, z.ZodTypeDef, {
394
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
426
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
395
427
  aweme_id: string;
396
428
  }>;
397
429
  readonly 评论数据: z.ZodType<{
@@ -485,6 +517,19 @@ declare const DouyinValidationSchemas: {
485
517
  number?: number;
486
518
  cursor?: number;
487
519
  }>;
520
+ readonly 弹幕数据: z.ZodType<{
521
+ methodType: "\u5F39\u5E55\u6570\u636E";
522
+ aweme_id: string;
523
+ start_time?: number;
524
+ end_time?: number;
525
+ duration: number;
526
+ }, z.ZodTypeDef, {
527
+ methodType: "\u5F39\u5E55\u6570\u636E";
528
+ aweme_id: string;
529
+ start_time?: number;
530
+ end_time?: number;
531
+ duration: number;
532
+ }>;
488
533
  };
489
534
  type DouyinMethodType = keyof typeof DouyinValidationSchemas;
490
535
 
@@ -505,15 +550,15 @@ interface KuaishouMethodOptionsMap {
505
550
  }
506
551
 
507
552
  /**
508
- * @description 快手单个视频作品请求参数
553
+ * 快手单个视频作品请求参数
509
554
  */
510
555
  type KuaishouVideoParams = KuaishouMethodOptionsMap['VideoInfoParams'];
511
556
  /**
512
- * @description 快手评论数据请求参数
557
+ * 快手评论数据请求参数
513
558
  */
514
559
  type KuaishouCommentParams = KuaishouMethodOptionsMap['CommentParams'];
515
560
  /**
516
- * @description 快手Emoji数据请求参数
561
+ * 快手Emoji数据请求参数
517
562
  */
518
563
  type KuaishouEmojiParams = KuaishouMethodOptionsMap['EmojiListParams'];
519
564
  declare const KuaishouVideoParamsSchema: z.ZodType<KuaishouVideoParams>;
@@ -852,7 +897,7 @@ type DyEmojiProList = {
852
897
  extra: EmojiProListExtra;
853
898
  flame_achieve_dashboard: FlameAchieveDashboard;
854
899
  interactive_resource_config: InteractiveResourceConfig;
855
- log_pb: LogPb$8;
900
+ log_pb: LogPb$a;
856
901
  report_toggles: ReportToggles;
857
902
  status_code: number;
858
903
  status_msg: string;
@@ -1374,7 +1419,7 @@ type StickyConfig = {
1374
1419
  sender_show?: string;
1375
1420
  [property: string]: any;
1376
1421
  };
1377
- type LogPb$8 = {
1422
+ type LogPb$a = {
1378
1423
  impr_id: string;
1379
1424
  [property: string]: any;
1380
1425
  };
@@ -1389,21 +1434,21 @@ type ReportToggles = {
1389
1434
 
1390
1435
  /** 图集作品 */
1391
1436
  type DyImageAlbumWork = {
1392
- aweme_detail: AwemeDetail$2;
1393
- log_pb: LogPb$7;
1437
+ aweme_detail: AwemeDetail$3;
1438
+ log_pb: LogPb$9;
1394
1439
  status_code: number;
1395
1440
  [property: string]: any;
1396
1441
  };
1397
- type AwemeDetail$2 = {
1442
+ type AwemeDetail$3 = {
1398
1443
  activity_video_type: number;
1399
1444
  anchors: null;
1400
1445
  authentication_token: string;
1401
- author: Author$5;
1446
+ author: Author$6;
1402
1447
  author_mask_tag: number;
1403
1448
  author_user_id: number;
1404
- aweme_control: AwemeControl$3;
1449
+ aweme_control: AwemeControl$4;
1405
1450
  aweme_id: string;
1406
- aweme_listen_struct: AwemeListenStruct$3;
1451
+ aweme_listen_struct: AwemeListenStruct$4;
1407
1452
  aweme_type: number;
1408
1453
  aweme_type_tags: string;
1409
1454
  boost_status: number;
@@ -1416,9 +1461,9 @@ type AwemeDetail$2 = {
1416
1461
  collection_corner_mark: number;
1417
1462
  comment_gid: number;
1418
1463
  comment_list: null;
1419
- comment_permission_info: CommentPermissionInfo$3;
1464
+ comment_permission_info: CommentPermissionInfo$4;
1420
1465
  commerce_config_data: null;
1421
- component_control: ComponentControl$3;
1466
+ component_control: ComponentControl$4;
1422
1467
  component_info_v2: string;
1423
1468
  cover_labels: null;
1424
1469
  create_time: number;
@@ -1426,20 +1471,20 @@ type AwemeDetail$2 = {
1426
1471
  disable_relation_bar: number;
1427
1472
  dislike_dimension_list: null;
1428
1473
  dislike_dimension_list_v2: null;
1429
- distribute_circle: DistributeCircle$3;
1474
+ distribute_circle: DistributeCircle$4;
1430
1475
  duet_aggregate_in_music_tab: boolean;
1431
1476
  duration: number;
1432
1477
  ecom_comment_atmosphere_type: number;
1433
1478
  enable_comment_sticker_rec: boolean;
1434
- entertainment_product_info: EntertainmentProductInfo$4;
1435
- fall_card_struct: FallCardStruct$2;
1436
- feed_comment_config: FeedCommentConfig$3;
1479
+ entertainment_product_info: EntertainmentProductInfo$5;
1480
+ fall_card_struct: FallCardStruct$3;
1481
+ feed_comment_config: FeedCommentConfig$4;
1437
1482
  flash_mob_trends: number;
1438
1483
  friend_interaction: number;
1439
1484
  friend_recommend_info: {
1440
1485
  [key: string]: any;
1441
1486
  };
1442
- game_tag_info: GameTagInfo$3;
1487
+ game_tag_info: GameTagInfo$4;
1443
1488
  geofencing: string[];
1444
1489
  geofencing_regions: null;
1445
1490
  group_id: string;
@@ -1447,7 +1492,7 @@ type AwemeDetail$2 = {
1447
1492
  [key: string]: any;
1448
1493
  };
1449
1494
  hybrid_label: null;
1450
- image_album_music_info: ImageAlbumMusicInfo$3;
1495
+ image_album_music_info: ImageAlbumMusicInfo$4;
1451
1496
  image_comment: {
1452
1497
  [key: string]: any;
1453
1498
  };
@@ -1455,9 +1500,9 @@ type AwemeDetail$2 = {
1455
1500
  image_infos: null;
1456
1501
  image_item_quality_level: number;
1457
1502
  image_list: null;
1458
- images: Image$1[];
1503
+ images: Image$2[];
1459
1504
  img_bitrate: string[];
1460
- impression_data: ImpressionData$4;
1505
+ impression_data: ImpressionData$5;
1461
1506
  incentive_item_type: number;
1462
1507
  interaction_stickers: null;
1463
1508
  is_24_story: number;
@@ -1472,13 +1517,13 @@ type AwemeDetail$2 = {
1472
1517
  is_top: number;
1473
1518
  is_use_music: boolean;
1474
1519
  item_title: string;
1475
- item_warn_notification: ItemWarnNotification$3;
1520
+ item_warn_notification: ItemWarnNotification$4;
1476
1521
  label_top_text: null;
1477
1522
  libfinsert_task_id: string;
1478
1523
  long_video: null;
1479
1524
  mark_largely_following: boolean;
1480
1525
  media_type: number;
1481
- music: Music$4;
1526
+ music: Music$5;
1482
1527
  nickname_position: null;
1483
1528
  origin_comment_ids: null;
1484
1529
  origin_duet_resource_uri: string;
@@ -1487,22 +1532,22 @@ type AwemeDetail$2 = {
1487
1532
  original_images: null;
1488
1533
  packed_clips: null;
1489
1534
  personal_page_botton_diagnose_style: number;
1490
- photo_search_entrance: PhotoSearchEntrance$3;
1491
- play_progress: PlayProgress$3;
1535
+ photo_search_entrance: PhotoSearchEntrance$4;
1536
+ play_progress: PlayProgress$4;
1492
1537
  position: null;
1493
1538
  preview_title: string;
1494
1539
  preview_video_status: number;
1495
1540
  promotions: string[];
1496
- publish_plus_alienation: PublishPlusAlienation$3;
1541
+ publish_plus_alienation: PublishPlusAlienation$4;
1497
1542
  rate: number;
1498
1543
  region: string;
1499
1544
  relation_labels: null;
1500
- risk_infos: RiskInfos$3;
1545
+ risk_infos: RiskInfos$4;
1501
1546
  seo_info: {
1502
1547
  [key: string]: any;
1503
1548
  };
1504
- series_paid_info: SeriesPaidInfo$3;
1505
- share_info: AwemeDetailShareInfo$2;
1549
+ series_paid_info: SeriesPaidInfo$4;
1550
+ share_info: AwemeDetailShareInfo$3;
1506
1551
  share_rec_extra: string;
1507
1552
  share_url: string;
1508
1553
  shoot_way: string;
@@ -1511,36 +1556,36 @@ type AwemeDetail$2 = {
1511
1556
  [key: string]: any;
1512
1557
  };
1513
1558
  social_tag_list: null;
1514
- statistics: Statistics$4;
1515
- status: Status$3;
1516
- suggest_words: SuggestWords$4;
1517
- text_extra: TextExtra$3[];
1559
+ statistics: Statistics$5;
1560
+ status: Status$4;
1561
+ suggest_words: SuggestWords$5;
1562
+ text_extra: TextExtra$4[];
1518
1563
  uniqid_position: null;
1519
1564
  user_digged: number;
1520
1565
  user_recommend_status: number;
1521
- video: Video$5;
1522
- video_control: VideoControl$4;
1566
+ video: Video$6;
1567
+ video_control: VideoControl$5;
1523
1568
  video_game_data_channel_config: {
1524
1569
  [key: string]: any;
1525
1570
  };
1526
1571
  video_labels: null;
1527
1572
  video_share_edit_status: number;
1528
- video_tag: VideoTag$3[];
1573
+ video_tag: VideoTag$4[];
1529
1574
  video_text: string[];
1530
- visual_search_info: VisualSearchInfo$3;
1575
+ visual_search_info: VisualSearchInfo$4;
1531
1576
  vtag_search: VtagSearch$2;
1532
- xigua_base_info: XiguaBaseInfo$3;
1577
+ xigua_base_info: XiguaBaseInfo$4;
1533
1578
  [property: string]: any;
1534
1579
  };
1535
- type Author$5 = {
1580
+ type Author$6 = {
1536
1581
  account_cert_info: string;
1537
- avatar_thumb: AuthorAvatarThumb$3;
1582
+ avatar_thumb: AuthorAvatarThumb$4;
1538
1583
  awemehts_greet_info: string;
1539
1584
  cf_list: null;
1540
1585
  close_friend_type: number;
1541
1586
  contacts_status: number;
1542
1587
  contrail_list: null;
1543
- cover_url: Coverurl$4[];
1588
+ cover_url: Coverurl$5[];
1544
1589
  create_time: number;
1545
1590
  custom_verify: string;
1546
1591
  data_label_list: null;
@@ -1567,7 +1612,7 @@ type Author$5 = {
1567
1612
  risk_notice_text: string;
1568
1613
  sec_uid: string;
1569
1614
  secret: number;
1570
- share_info: AuthorShareInfo$3;
1615
+ share_info: AuthorShareInfo$4;
1571
1616
  short_id: string;
1572
1617
  signature: string;
1573
1618
  signature_extra: null;
@@ -1584,24 +1629,24 @@ type Author$5 = {
1584
1629
  verification_type: number;
1585
1630
  [property: string]: any;
1586
1631
  };
1587
- type AuthorAvatarThumb$3 = {
1632
+ type AuthorAvatarThumb$4 = {
1588
1633
  height: number;
1589
1634
  uri: string;
1590
1635
  url_list: string[];
1591
1636
  width: number;
1592
1637
  [property: string]: any;
1593
1638
  };
1594
- type Coverurl$4 = {
1639
+ type Coverurl$5 = {
1595
1640
  height?: number;
1596
1641
  uri?: string;
1597
1642
  url_list?: string[];
1598
1643
  width?: number;
1599
1644
  [property: string]: any;
1600
1645
  };
1601
- type AuthorShareInfo$3 = {
1646
+ type AuthorShareInfo$4 = {
1602
1647
  share_desc: string;
1603
1648
  share_desc_info: string;
1604
- share_qrcode_url: ShareQrcodeurl$4;
1649
+ share_qrcode_url: ShareQrcodeurl$5;
1605
1650
  share_title: string;
1606
1651
  share_title_myself: string;
1607
1652
  share_title_other: string;
@@ -1609,25 +1654,25 @@ type AuthorShareInfo$3 = {
1609
1654
  share_weibo_desc: string;
1610
1655
  [property: string]: any;
1611
1656
  };
1612
- type ShareQrcodeurl$4 = {
1657
+ type ShareQrcodeurl$5 = {
1613
1658
  height: number;
1614
1659
  uri: string;
1615
1660
  url_list: string[];
1616
1661
  width: number;
1617
1662
  [property: string]: any;
1618
1663
  };
1619
- type AwemeControl$3 = {
1664
+ type AwemeControl$4 = {
1620
1665
  can_comment: boolean;
1621
1666
  can_forward: boolean;
1622
1667
  can_share: boolean;
1623
1668
  can_show_comment: boolean;
1624
1669
  [property: string]: any;
1625
1670
  };
1626
- type AwemeListenStruct$3 = {
1671
+ type AwemeListenStruct$4 = {
1627
1672
  trace_info: string;
1628
1673
  [property: string]: any;
1629
1674
  };
1630
- type CommentPermissionInfo$3 = {
1675
+ type CommentPermissionInfo$4 = {
1631
1676
  can_comment: boolean;
1632
1677
  comment_permission_status: number;
1633
1678
  item_detail_entry: boolean;
@@ -1635,48 +1680,48 @@ type CommentPermissionInfo$3 = {
1635
1680
  toast_guide: boolean;
1636
1681
  [property: string]: any;
1637
1682
  };
1638
- type ComponentControl$3 = {
1683
+ type ComponentControl$4 = {
1639
1684
  data_source_url: string;
1640
1685
  [property: string]: any;
1641
1686
  };
1642
- type DistributeCircle$3 = {
1687
+ type DistributeCircle$4 = {
1643
1688
  campus_block_interaction: boolean;
1644
1689
  distribute_type: number;
1645
1690
  is_campus: boolean;
1646
1691
  [property: string]: any;
1647
1692
  };
1648
- type EntertainmentProductInfo$4 = {
1649
- market_info: MarketInfo$4;
1693
+ type EntertainmentProductInfo$5 = {
1694
+ market_info: MarketInfo$5;
1650
1695
  [property: string]: any;
1651
1696
  };
1652
- type MarketInfo$4 = {
1653
- limit_free: LimitFree$4;
1697
+ type MarketInfo$5 = {
1698
+ limit_free: LimitFree$5;
1654
1699
  [property: string]: any;
1655
1700
  };
1656
- type LimitFree$4 = {
1701
+ type LimitFree$5 = {
1657
1702
  in_free: boolean;
1658
1703
  [property: string]: any;
1659
1704
  };
1660
- type FallCardStruct$2 = {
1705
+ type FallCardStruct$3 = {
1661
1706
  recommend_reason_v2: string;
1662
1707
  [property: string]: any;
1663
1708
  };
1664
- type FeedCommentConfig$3 = {
1709
+ type FeedCommentConfig$4 = {
1665
1710
  author_audit_status: number;
1666
1711
  input_config_text: string;
1667
1712
  [property: string]: any;
1668
1713
  };
1669
- type GameTagInfo$3 = {
1714
+ type GameTagInfo$4 = {
1670
1715
  is_game: boolean;
1671
1716
  [property: string]: any;
1672
1717
  };
1673
- type ImageAlbumMusicInfo$3 = {
1718
+ type ImageAlbumMusicInfo$4 = {
1674
1719
  begin_time: number;
1675
1720
  end_time: number;
1676
1721
  volume: number;
1677
1722
  [property: string]: any;
1678
1723
  };
1679
- type Image$1 = {
1724
+ type Image$2 = {
1680
1725
  download_url_list: string[];
1681
1726
  height: number;
1682
1727
  uri: string;
@@ -1684,7 +1729,7 @@ type Image$1 = {
1684
1729
  width: number;
1685
1730
  [property: string]: any;
1686
1731
  };
1687
- type ImpressionData$4 = {
1732
+ type ImpressionData$5 = {
1688
1733
  group_id_list_a: string[];
1689
1734
  group_id_list_b: string[];
1690
1735
  group_id_list_c: string[];
@@ -1692,13 +1737,13 @@ type ImpressionData$4 = {
1692
1737
  similar_id_list_b: null;
1693
1738
  [property: string]: any;
1694
1739
  };
1695
- type ItemWarnNotification$3 = {
1740
+ type ItemWarnNotification$4 = {
1696
1741
  content: string;
1697
1742
  show: boolean;
1698
1743
  type: number;
1699
1744
  [property: string]: any;
1700
1745
  };
1701
- type Music$4 = {
1746
+ type Music$5 = {
1702
1747
  album: string;
1703
1748
  artist_user_infos: null;
1704
1749
  artists: string[];
@@ -1707,16 +1752,16 @@ type Music$4 = {
1707
1752
  author_deleted: boolean;
1708
1753
  author_position: null;
1709
1754
  author_status: number;
1710
- avatar_large: AvatarLarge$3;
1711
- avatar_medium: AvatarMedium$4;
1712
- avatar_thumb: MusicAvatarThumb$3;
1755
+ avatar_large: AvatarLarge$4;
1756
+ avatar_medium: AvatarMedium$5;
1757
+ avatar_thumb: MusicAvatarThumb$4;
1713
1758
  binded_challenge_id: number;
1714
1759
  can_background_play: boolean;
1715
1760
  collect_stat: number;
1716
- cover_hd: Coverhd$4;
1717
- cover_large: CoverLarge$4;
1718
- cover_medium: MusicCoverMedium$1;
1719
- cover_thumb: CoverThumb$5;
1761
+ cover_hd: Coverhd$5;
1762
+ cover_large: CoverLarge$5;
1763
+ cover_medium: MusicCoverMedium$2;
1764
+ cover_thumb: CoverThumb$6;
1720
1765
  dmv_auto_show: boolean;
1721
1766
  dsp_status: number;
1722
1767
  duration: number;
@@ -1735,7 +1780,7 @@ type Music$4 = {
1735
1780
  is_restricted: boolean;
1736
1781
  is_video_self_see: boolean;
1737
1782
  lyric_short_position: null;
1738
- matched_pgc_sound: MatchedPgcSound$2;
1783
+ matched_pgc_sound: MatchedPgcSound$3;
1739
1784
  mid: string;
1740
1785
  music_chart_ranks: null;
1741
1786
  music_collect_count: number;
@@ -1748,7 +1793,7 @@ type Music$4 = {
1748
1793
  owner_id: string;
1749
1794
  owner_nickname: string;
1750
1795
  pgc_music_type: number;
1751
- play_url: Playurl$5;
1796
+ play_url: Playurl$6;
1752
1797
  position: null;
1753
1798
  prevent_download: boolean;
1754
1799
  prevent_item_download_status: number;
@@ -1757,10 +1802,10 @@ type Music$4 = {
1757
1802
  reason_type: number;
1758
1803
  redirect: boolean;
1759
1804
  schema_url: string;
1760
- search_impr: SearchImpr$4;
1805
+ search_impr: SearchImpr$5;
1761
1806
  sec_uid: string;
1762
1807
  shoot_duration: number;
1763
- song: Song$3;
1808
+ song: Song$4;
1764
1809
  source_platform: number;
1765
1810
  start_time: number;
1766
1811
  status: number;
@@ -1772,71 +1817,71 @@ type Music$4 = {
1772
1817
  video_duration: number;
1773
1818
  [property: string]: any;
1774
1819
  };
1775
- type AvatarLarge$3 = {
1820
+ type AvatarLarge$4 = {
1776
1821
  height: number;
1777
1822
  uri: string;
1778
1823
  url_list: string[];
1779
1824
  width: number;
1780
1825
  [property: string]: any;
1781
1826
  };
1782
- type AvatarMedium$4 = {
1827
+ type AvatarMedium$5 = {
1783
1828
  height: number;
1784
1829
  uri: string;
1785
1830
  url_list: string[];
1786
1831
  width: number;
1787
1832
  [property: string]: any;
1788
1833
  };
1789
- type MusicAvatarThumb$3 = {
1834
+ type MusicAvatarThumb$4 = {
1790
1835
  height: number;
1791
1836
  uri: string;
1792
1837
  url_list: string[];
1793
1838
  width: number;
1794
1839
  [property: string]: any;
1795
1840
  };
1796
- type Coverhd$4 = {
1841
+ type Coverhd$5 = {
1797
1842
  height: number;
1798
1843
  uri: string;
1799
1844
  url_list: string[];
1800
1845
  width: number;
1801
1846
  [property: string]: any;
1802
1847
  };
1803
- type CoverLarge$4 = {
1848
+ type CoverLarge$5 = {
1804
1849
  height: number;
1805
1850
  uri: string;
1806
1851
  url_list: string[];
1807
1852
  width: number;
1808
1853
  [property: string]: any;
1809
1854
  };
1810
- type MusicCoverMedium$1 = {
1855
+ type MusicCoverMedium$2 = {
1811
1856
  height: number;
1812
1857
  uri: string;
1813
1858
  url_list: string[];
1814
1859
  width: number;
1815
1860
  [property: string]: any;
1816
1861
  };
1817
- type CoverThumb$5 = {
1862
+ type CoverThumb$6 = {
1818
1863
  height: number;
1819
1864
  uri: string;
1820
1865
  url_list: string[];
1821
1866
  width: number;
1822
1867
  [property: string]: any;
1823
1868
  };
1824
- type MatchedPgcSound$2 = {
1869
+ type MatchedPgcSound$3 = {
1825
1870
  author: string;
1826
- cover_medium: MatchedPgcSoundCoverMedium$2;
1871
+ cover_medium: MatchedPgcSoundCoverMedium$3;
1827
1872
  mixed_author: string;
1828
1873
  mixed_title: string;
1829
1874
  title: string;
1830
1875
  [property: string]: any;
1831
1876
  };
1832
- type MatchedPgcSoundCoverMedium$2 = {
1877
+ type MatchedPgcSoundCoverMedium$3 = {
1833
1878
  height: number;
1834
1879
  uri: string;
1835
1880
  url_list: string[];
1836
1881
  width: number;
1837
1882
  [property: string]: any;
1838
1883
  };
1839
- type Playurl$5 = {
1884
+ type Playurl$6 = {
1840
1885
  height: number;
1841
1886
  uri: string;
1842
1887
  url_key: string;
@@ -1844,11 +1889,11 @@ type Playurl$5 = {
1844
1889
  width: number;
1845
1890
  [property: string]: any;
1846
1891
  };
1847
- type SearchImpr$4 = {
1892
+ type SearchImpr$5 = {
1848
1893
  entity_id: string;
1849
1894
  [property: string]: any;
1850
1895
  };
1851
- type Song$3 = {
1896
+ type Song$4 = {
1852
1897
  artists: null;
1853
1898
  id: number;
1854
1899
  id_str: string;
@@ -1861,20 +1906,20 @@ type StrongBeaturl$4 = {
1861
1906
  width: number;
1862
1907
  [property: string]: any;
1863
1908
  };
1864
- type PhotoSearchEntrance$3 = {
1909
+ type PhotoSearchEntrance$4 = {
1865
1910
  ecom_type: number;
1866
1911
  [property: string]: any;
1867
1912
  };
1868
- type PlayProgress$3 = {
1913
+ type PlayProgress$4 = {
1869
1914
  last_modified_time: number;
1870
1915
  play_progress: number;
1871
1916
  [property: string]: any;
1872
1917
  };
1873
- type PublishPlusAlienation$3 = {
1918
+ type PublishPlusAlienation$4 = {
1874
1919
  alienation_type: number;
1875
1920
  [property: string]: any;
1876
1921
  };
1877
- type RiskInfos$3 = {
1922
+ type RiskInfos$4 = {
1878
1923
  content: string;
1879
1924
  risk_sink: boolean;
1880
1925
  type: number;
@@ -1882,19 +1927,19 @@ type RiskInfos$3 = {
1882
1927
  warn: boolean;
1883
1928
  [property: string]: any;
1884
1929
  };
1885
- type SeriesPaidInfo$3 = {
1930
+ type SeriesPaidInfo$4 = {
1886
1931
  item_price: number;
1887
1932
  series_paid_status: number;
1888
1933
  [property: string]: any;
1889
1934
  };
1890
- type AwemeDetailShareInfo$2 = {
1935
+ type AwemeDetailShareInfo$3 = {
1891
1936
  share_desc: string;
1892
1937
  share_desc_info: string;
1893
1938
  share_link_desc: string;
1894
1939
  share_url: string;
1895
1940
  [property: string]: any;
1896
1941
  };
1897
- type Statistics$4 = {
1942
+ type Statistics$5 = {
1898
1943
  admire_count: number;
1899
1944
  aweme_id: string;
1900
1945
  collect_count: number;
@@ -1904,7 +1949,7 @@ type Statistics$4 = {
1904
1949
  share_count: number;
1905
1950
  [property: string]: any;
1906
1951
  };
1907
- type Status$3 = {
1952
+ type Status$4 = {
1908
1953
  allow_share: boolean;
1909
1954
  aweme_id: string;
1910
1955
  in_reviewing: boolean;
@@ -1913,31 +1958,31 @@ type Status$3 = {
1913
1958
  listen_video_status: number;
1914
1959
  part_see: number;
1915
1960
  private_status: number;
1916
- review_result: ReviewResult$4;
1961
+ review_result: ReviewResult$5;
1917
1962
  [property: string]: any;
1918
1963
  };
1919
- type ReviewResult$4 = {
1964
+ type ReviewResult$5 = {
1920
1965
  review_status: number;
1921
1966
  [property: string]: any;
1922
1967
  };
1923
- type SuggestWords$4 = {
1924
- suggest_words: SuggestWord$4[];
1968
+ type SuggestWords$5 = {
1969
+ suggest_words: SuggestWord$5[];
1925
1970
  [property: string]: any;
1926
1971
  };
1927
- type SuggestWord$4 = {
1972
+ type SuggestWord$5 = {
1928
1973
  hint_text?: string;
1929
1974
  icon_url?: string;
1930
1975
  scene?: string;
1931
- words?: Word$5[];
1976
+ words?: Word$6[];
1932
1977
  [property: string]: any;
1933
1978
  };
1934
- type Word$5 = {
1979
+ type Word$6 = {
1935
1980
  info?: string;
1936
1981
  word?: string;
1937
1982
  word_id?: string;
1938
1983
  [property: string]: any;
1939
1984
  };
1940
- type TextExtra$3 = {
1985
+ type TextExtra$4 = {
1941
1986
  caption_end: number;
1942
1987
  caption_start: number;
1943
1988
  end: number;
@@ -1948,20 +1993,20 @@ type TextExtra$3 = {
1948
1993
  type: number;
1949
1994
  [property: string]: any;
1950
1995
  };
1951
- type Video$5 = {
1996
+ type Video$6 = {
1952
1997
  audio: {
1953
1998
  [key: string]: any;
1954
1999
  };
1955
2000
  big_thumbs: BigThumb$2[];
1956
2001
  bit_rate_audio: null;
1957
- cover: Cover$3;
2002
+ cover: Cover$4;
1958
2003
  duration: number;
1959
2004
  has_watermark: boolean;
1960
2005
  height: number;
1961
2006
  is_h265: number;
1962
2007
  meta: string;
1963
- origin_cover: OriginCover$3;
1964
- play_addr: PlayAddr;
2008
+ origin_cover: OriginCover$4;
2009
+ play_addr: PlayAddr$1;
1965
2010
  ratio: string;
1966
2011
  width: number;
1967
2012
  [property: string]: any;
@@ -1981,21 +2026,21 @@ type BigThumb$2 = {
1981
2026
  uris?: string[];
1982
2027
  [property: string]: any;
1983
2028
  };
1984
- type Cover$3 = {
2029
+ type Cover$4 = {
1985
2030
  height: number;
1986
2031
  uri: string;
1987
2032
  url_list: string[];
1988
2033
  width: number;
1989
2034
  [property: string]: any;
1990
2035
  };
1991
- type OriginCover$3 = {
2036
+ type OriginCover$4 = {
1992
2037
  height: number;
1993
2038
  uri: string;
1994
2039
  url_list: string[];
1995
2040
  width: number;
1996
2041
  [property: string]: any;
1997
2042
  };
1998
- type PlayAddr = {
2043
+ type PlayAddr$1 = {
1999
2044
  height: number;
2000
2045
  uri: string;
2001
2046
  url_key: string;
@@ -2003,7 +2048,7 @@ type PlayAddr = {
2003
2048
  width: number;
2004
2049
  [property: string]: any;
2005
2050
  };
2006
- type VideoControl$4 = {
2051
+ type VideoControl$5 = {
2007
2052
  allow_douplus: boolean;
2008
2053
  allow_download: boolean;
2009
2054
  allow_duet: boolean;
@@ -2015,10 +2060,10 @@ type VideoControl$4 = {
2015
2060
  allow_stitch: boolean;
2016
2061
  disable_record_reason: string;
2017
2062
  download_ignore_visibility: boolean;
2018
- download_info: DownloadInfo$4;
2063
+ download_info: DownloadInfo$5;
2019
2064
  draft_progress_bar: number;
2020
2065
  duet_ignore_visibility: boolean;
2021
- duet_info: DuetInfo$4;
2066
+ duet_info: DuetInfo$5;
2022
2067
  prevent_download_type: number;
2023
2068
  share_grayed: boolean;
2024
2069
  share_ignore_visibility: boolean;
@@ -2030,11 +2075,11 @@ type VideoControl$4 = {
2030
2075
  timer_status: number;
2031
2076
  [property: string]: any;
2032
2077
  };
2033
- type DownloadInfo$4 = {
2078
+ type DownloadInfo$5 = {
2034
2079
  level: number;
2035
2080
  [property: string]: any;
2036
2081
  };
2037
- type DuetInfo$4 = {
2082
+ type DuetInfo$5 = {
2038
2083
  fail_info: FailInfo;
2039
2084
  level: number;
2040
2085
  [property: string]: any;
@@ -2044,13 +2089,13 @@ type FailInfo = {
2044
2089
  reason: string;
2045
2090
  [property: string]: any;
2046
2091
  };
2047
- type VideoTag$3 = {
2092
+ type VideoTag$4 = {
2048
2093
  level: number;
2049
2094
  tag_id: number;
2050
2095
  tag_name: string;
2051
2096
  [property: string]: any;
2052
2097
  };
2053
- type VisualSearchInfo$3 = {
2098
+ type VisualSearchInfo$4 = {
2054
2099
  is_ecom_img: boolean;
2055
2100
  is_high_accuracy_ecom: boolean;
2056
2101
  is_high_recall_ecom: boolean;
@@ -2063,14 +2108,14 @@ type VtagSearch$2 = {
2063
2108
  vtag_enable: boolean;
2064
2109
  [property: string]: any;
2065
2110
  };
2066
- type XiguaBaseInfo$3 = {
2111
+ type XiguaBaseInfo$4 = {
2067
2112
  item_id: number;
2068
2113
  star_altar_order_id: number;
2069
2114
  star_altar_type: number;
2070
2115
  status: number;
2071
2116
  [property: string]: any;
2072
2117
  };
2073
- type LogPb$7 = {
2118
+ type LogPb$9 = {
2074
2119
  impr_id: string;
2075
2120
  [property: string]: any;
2076
2121
  };
@@ -2081,7 +2126,7 @@ type DyMusicWork = {
2081
2126
  [key: string]: any;
2082
2127
  };
2083
2128
  high_upload_ratio: number;
2084
- log_pb: LogPb$6;
2129
+ log_pb: LogPb$8;
2085
2130
  msg: string;
2086
2131
  music_info: MusicInfo;
2087
2132
  rec_list: string[];
@@ -2098,7 +2143,7 @@ type Extra$4 = {
2098
2143
  now: number;
2099
2144
  [property: string]: any;
2100
2145
  };
2101
- type LogPb$6 = {
2146
+ type LogPb$8 = {
2102
2147
  impr_id: string;
2103
2148
  [property: string]: any;
2104
2149
  };
@@ -2111,16 +2156,16 @@ type MusicInfo = {
2111
2156
  author_deleted: boolean;
2112
2157
  author_position: null;
2113
2158
  author_status: number;
2114
- avatar_large: AvatarLarge$2;
2115
- avatar_medium: AvatarMedium$3;
2159
+ avatar_large: AvatarLarge$3;
2160
+ avatar_medium: AvatarMedium$4;
2116
2161
  avatar_thumb: AvatarThumb$2;
2117
2162
  binded_challenge_id: number;
2118
2163
  can_background_play: boolean;
2119
2164
  collect_stat: number;
2120
- cover_hd: Coverhd$3;
2121
- cover_large: CoverLarge$3;
2165
+ cover_hd: Coverhd$4;
2166
+ cover_large: CoverLarge$4;
2122
2167
  cover_medium: MusicInfoCoverMedium;
2123
- cover_thumb: CoverThumb$4;
2168
+ cover_thumb: CoverThumb$5;
2124
2169
  dmv_auto_show: boolean;
2125
2170
  dsp_status: number;
2126
2171
  duration: number;
@@ -2140,7 +2185,7 @@ type MusicInfo = {
2140
2185
  is_video_self_see: boolean;
2141
2186
  luna_info: LunaInfo;
2142
2187
  lyric_short_position: null;
2143
- matched_pgc_sound: MatchedPgcSound$1;
2188
+ matched_pgc_sound: MatchedPgcSound$2;
2144
2189
  mid: string;
2145
2190
  music_chart_ranks: null;
2146
2191
  music_collect_count: number;
@@ -2154,7 +2199,7 @@ type MusicInfo = {
2154
2199
  owner_id: string;
2155
2200
  owner_nickname: string;
2156
2201
  pgc_music_type: number;
2157
- play_url: Playurl$4;
2202
+ play_url: Playurl$5;
2158
2203
  position: null;
2159
2204
  prevent_download: boolean;
2160
2205
  prevent_item_download_status: number;
@@ -2163,11 +2208,11 @@ type MusicInfo = {
2163
2208
  reason_type: number;
2164
2209
  redirect: boolean;
2165
2210
  schema_url: string;
2166
- search_impr: SearchImpr$3;
2211
+ search_impr: SearchImpr$4;
2167
2212
  sec_uid: string;
2168
2213
  share_info: ShareInfo$2;
2169
2214
  shoot_duration: number;
2170
- song: Song$2;
2215
+ song: Song$3;
2171
2216
  source_platform: number;
2172
2217
  start_time: number;
2173
2218
  status: number;
@@ -2181,14 +2226,14 @@ type MusicInfo = {
2181
2226
  video_duration: number;
2182
2227
  [property: string]: any;
2183
2228
  };
2184
- type AvatarLarge$2 = {
2229
+ type AvatarLarge$3 = {
2185
2230
  height: number;
2186
2231
  uri: string;
2187
2232
  url_list: string[];
2188
2233
  width: number;
2189
2234
  [property: string]: any;
2190
2235
  };
2191
- type AvatarMedium$3 = {
2236
+ type AvatarMedium$4 = {
2192
2237
  height: number;
2193
2238
  uri: string;
2194
2239
  url_list: string[];
@@ -2202,14 +2247,14 @@ type AvatarThumb$2 = {
2202
2247
  width: number;
2203
2248
  [property: string]: any;
2204
2249
  };
2205
- type Coverhd$3 = {
2250
+ type Coverhd$4 = {
2206
2251
  height: number;
2207
2252
  uri: string;
2208
2253
  url_list: string[];
2209
2254
  width: number;
2210
2255
  [property: string]: any;
2211
2256
  };
2212
- type CoverLarge$3 = {
2257
+ type CoverLarge$4 = {
2213
2258
  height: number;
2214
2259
  uri: string;
2215
2260
  url_list: string[];
@@ -2223,7 +2268,7 @@ type MusicInfoCoverMedium = {
2223
2268
  width: number;
2224
2269
  [property: string]: any;
2225
2270
  };
2226
- type CoverThumb$4 = {
2271
+ type CoverThumb$5 = {
2227
2272
  height: number;
2228
2273
  uri: string;
2229
2274
  url_list: string[];
@@ -2235,23 +2280,23 @@ type LunaInfo = {
2235
2280
  is_luna_user: boolean;
2236
2281
  [property: string]: any;
2237
2282
  };
2238
- type MatchedPgcSound$1 = {
2283
+ type MatchedPgcSound$2 = {
2239
2284
  author: string;
2240
- cover_medium: MatchedPgcSoundCoverMedium$1;
2285
+ cover_medium: MatchedPgcSoundCoverMedium$2;
2241
2286
  id: number;
2242
2287
  mixed_author: string;
2243
2288
  mixed_title: string;
2244
2289
  title: string;
2245
2290
  [property: string]: any;
2246
2291
  };
2247
- type MatchedPgcSoundCoverMedium$1 = {
2292
+ type MatchedPgcSoundCoverMedium$2 = {
2248
2293
  height: number;
2249
2294
  uri: string;
2250
2295
  url_list: string[];
2251
2296
  width: number;
2252
2297
  [property: string]: any;
2253
2298
  };
2254
- type Playurl$4 = {
2299
+ type Playurl$5 = {
2255
2300
  height: number;
2256
2301
  uri: string;
2257
2302
  url_key: string;
@@ -2259,7 +2304,7 @@ type Playurl$4 = {
2259
2304
  width: number;
2260
2305
  [property: string]: any;
2261
2306
  };
2262
- type SearchImpr$3 = {
2307
+ type SearchImpr$4 = {
2263
2308
  entity_id: string;
2264
2309
  [property: string]: any;
2265
2310
  };
@@ -2277,7 +2322,7 @@ type ShareInfo$2 = {
2277
2322
  share_weibo_desc: string;
2278
2323
  [property: string]: any;
2279
2324
  };
2280
- type Song$2 = {
2325
+ type Song$3 = {
2281
2326
  artists: null;
2282
2327
  chorus_v3_infos: null;
2283
2328
  id: number;
@@ -2315,7 +2360,7 @@ type DySearchInfo = {
2315
2360
  global_doodle_config: GlobalDoodleConfig;
2316
2361
  guide_search_words: GuideSearchWord[];
2317
2362
  has_more: number;
2318
- log_pb: LogPb$5;
2363
+ log_pb: LogPb$7;
2319
2364
  multi_columns_info: MultiColumnsInfo;
2320
2365
  ops: null;
2321
2366
  path: string;
@@ -2362,7 +2407,7 @@ type Datum$2 = {
2362
2407
  type AwemeInfo = {
2363
2408
  anchor_info?: AnchorInfo$1;
2364
2409
  anchors: null;
2365
- author: Author$4;
2410
+ author: Author$5;
2366
2411
  author_user_id: number;
2367
2412
  aweme_id: string;
2368
2413
  aweme_type: number;
@@ -2380,7 +2425,7 @@ type AwemeInfo = {
2380
2425
  desc: string;
2381
2426
  dislike_dimension_list: null;
2382
2427
  dislike_dimension_list_v2: null;
2383
- entertainment_product_info: EntertainmentProductInfo$3;
2428
+ entertainment_product_info: EntertainmentProductInfo$4;
2384
2429
  fake_horizontal_info?: FakeHorizontalInfo;
2385
2430
  geofencing: null;
2386
2431
  geofencing_regions: null;
@@ -2390,14 +2435,14 @@ type AwemeInfo = {
2390
2435
  image_list: null;
2391
2436
  images: null;
2392
2437
  img_bitrate: null;
2393
- impression_data: ImpressionData$3;
2438
+ impression_data: ImpressionData$4;
2394
2439
  interaction_stickers: null;
2395
2440
  is_top: number;
2396
2441
  jump_tab_info_list: null;
2397
2442
  label_top_text: null;
2398
2443
  long_video: null;
2399
2444
  mix_info?: MixInfo;
2400
- music: Music$3;
2445
+ music: Music$4;
2401
2446
  mv_info: null;
2402
2447
  nickname_position: null;
2403
2448
  origin_comment_ids: null;
@@ -2416,16 +2461,16 @@ type AwemeInfo = {
2416
2461
  slides_music_beats: null;
2417
2462
  social_tag_list: null;
2418
2463
  standard_bar_info_list: null;
2419
- statistics: Statistics$3;
2464
+ statistics: Statistics$4;
2420
2465
  status: AwemeInfoStatus;
2421
- suggest_words: SuggestWords$3;
2422
- text_extra: TextExtra$2[];
2466
+ suggest_words: SuggestWords$4;
2467
+ text_extra: TextExtra$3[];
2423
2468
  trends_infos: null;
2424
2469
  tts_id_list: null;
2425
2470
  uniqid_position: null;
2426
2471
  user_digged: number;
2427
- video: Video$4;
2428
- video_control: VideoControl$3;
2472
+ video: Video$5;
2473
+ video_control: VideoControl$4;
2429
2474
  video_labels: null;
2430
2475
  video_tag: null;
2431
2476
  video_text: null;
@@ -2462,11 +2507,11 @@ type StyleInfo$1 = {
2462
2507
  scene_icon: string;
2463
2508
  [property: string]: any;
2464
2509
  };
2465
- type Author$4 = {
2510
+ type Author$5 = {
2466
2511
  account_cert_info: string;
2467
2512
  ad_cover_url: null;
2468
2513
  avatar_schema_list: null;
2469
- avatar_thumb: AuthorAvatarThumb$2;
2514
+ avatar_thumb: AuthorAvatarThumb$3;
2470
2515
  ban_user_functions: null;
2471
2516
  batch_unfollow_contain_tabs: null;
2472
2517
  batch_unfollow_relation_desc: null;
@@ -2524,7 +2569,7 @@ type Author$4 = {
2524
2569
  white_cover_url: null;
2525
2570
  [property: string]: any;
2526
2571
  };
2527
- type AuthorAvatarThumb$2 = {
2572
+ type AuthorAvatarThumb$3 = {
2528
2573
  height: number;
2529
2574
  uri: string;
2530
2575
  url_list: string[];
@@ -2539,18 +2584,18 @@ type DanmakuControl$2 = {
2539
2584
  post_privilege_level: number;
2540
2585
  [property: string]: any;
2541
2586
  };
2542
- type EntertainmentProductInfo$3 = {
2587
+ type EntertainmentProductInfo$4 = {
2543
2588
  biz: number;
2544
- market_info: MarketInfo$3;
2589
+ market_info: MarketInfo$4;
2545
2590
  sub_title: null;
2546
2591
  [property: string]: any;
2547
2592
  };
2548
- type MarketInfo$3 = {
2549
- limit_free: LimitFree$3;
2593
+ type MarketInfo$4 = {
2594
+ limit_free: LimitFree$4;
2550
2595
  marketing_tag: null;
2551
2596
  [property: string]: any;
2552
2597
  };
2553
- type LimitFree$3 = {
2598
+ type LimitFree$4 = {
2554
2599
  in_free: boolean;
2555
2600
  [property: string]: any;
2556
2601
  };
@@ -2561,7 +2606,7 @@ type FakeHorizontalInfo = {
2561
2606
  top: number;
2562
2607
  [property: string]: any;
2563
2608
  };
2564
- type ImpressionData$3 = {
2609
+ type ImpressionData$4 = {
2565
2610
  group_id_list_a: number[];
2566
2611
  group_id_list_b: null;
2567
2612
  group_id_list_c: number[];
@@ -2570,7 +2615,7 @@ type ImpressionData$3 = {
2570
2615
  [property: string]: any;
2571
2616
  };
2572
2617
  type MixInfo = {
2573
- cover_url: Coverurl$3;
2618
+ cover_url: Coverurl$4;
2574
2619
  extra: string;
2575
2620
  ids: null;
2576
2621
  mix_id: string;
@@ -2582,7 +2627,7 @@ type MixInfo = {
2582
2627
  watched_item: string;
2583
2628
  [property: string]: any;
2584
2629
  };
2585
- type Coverurl$3 = {
2630
+ type Coverurl$4 = {
2586
2631
  height: number;
2587
2632
  uri: string;
2588
2633
  url_list: string[];
@@ -2601,17 +2646,17 @@ type MixInfoStatus = {
2601
2646
  status: number;
2602
2647
  [property: string]: any;
2603
2648
  };
2604
- type Music$3 = {
2649
+ type Music$4 = {
2605
2650
  album: string;
2606
2651
  artist_user_infos: null;
2607
2652
  artists: null;
2608
2653
  author: string;
2609
2654
  author_position: null;
2610
- avatar_thumb: MusicAvatarThumb$2;
2655
+ avatar_thumb: MusicAvatarThumb$3;
2611
2656
  binded_challenge_id: number;
2612
2657
  collect_stat: number;
2613
2658
  cover_medium: CoverMedium$2;
2614
- cover_thumb: CoverThumb$3;
2659
+ cover_thumb: CoverThumb$4;
2615
2660
  duration: number;
2616
2661
  external_song_info: null;
2617
2662
  extra: string;
@@ -2624,7 +2669,7 @@ type Music$3 = {
2624
2669
  musician_user_infos: null;
2625
2670
  owner_id: string;
2626
2671
  owner_nickname: string;
2627
- play_url: Playurl$3;
2672
+ play_url: Playurl$4;
2628
2673
  position: null;
2629
2674
  sec_uid: string;
2630
2675
  status: number;
@@ -2634,7 +2679,7 @@ type Music$3 = {
2634
2679
  user_count: number;
2635
2680
  [property: string]: any;
2636
2681
  };
2637
- type MusicAvatarThumb$2 = {
2682
+ type MusicAvatarThumb$3 = {
2638
2683
  height: number;
2639
2684
  uri: string;
2640
2685
  url_list: string[];
@@ -2648,14 +2693,14 @@ type CoverMedium$2 = {
2648
2693
  width: number;
2649
2694
  [property: string]: any;
2650
2695
  };
2651
- type CoverThumb$3 = {
2696
+ type CoverThumb$4 = {
2652
2697
  height: number;
2653
2698
  uri: string;
2654
2699
  url_list: string[];
2655
2700
  width: number;
2656
2701
  [property: string]: any;
2657
2702
  };
2658
- type Playurl$3 = {
2703
+ type Playurl$4 = {
2659
2704
  height: number;
2660
2705
  uri: string;
2661
2706
  url_key: string;
@@ -2672,7 +2717,7 @@ type ShareInfo$1 = {
2672
2717
  share_url: string;
2673
2718
  [property: string]: any;
2674
2719
  };
2675
- type Statistics$3 = {
2720
+ type Statistics$4 = {
2676
2721
  collect_count: number;
2677
2722
  comment_count: number;
2678
2723
  digg_count: number;
@@ -2691,32 +2736,32 @@ type AwemeInfoStatus = {
2691
2736
  is_prohibited: boolean;
2692
2737
  part_see: number;
2693
2738
  private_status: number;
2694
- review_result: ReviewResult$3;
2739
+ review_result: ReviewResult$4;
2695
2740
  [property: string]: any;
2696
2741
  };
2697
- type ReviewResult$3 = {
2742
+ type ReviewResult$4 = {
2698
2743
  review_status: number;
2699
2744
  [property: string]: any;
2700
2745
  };
2701
- type SuggestWords$3 = {
2702
- suggest_words: SuggestWord$3[];
2746
+ type SuggestWords$4 = {
2747
+ suggest_words: SuggestWord$4[];
2703
2748
  [property: string]: any;
2704
2749
  };
2705
- type SuggestWord$3 = {
2750
+ type SuggestWord$4 = {
2706
2751
  extra_info: string;
2707
2752
  hint_text: string;
2708
2753
  icon_url: string;
2709
2754
  scene: string;
2710
- words: Word$4[];
2755
+ words: Word$5[];
2711
2756
  [property: string]: any;
2712
2757
  };
2713
- type Word$4 = {
2758
+ type Word$5 = {
2714
2759
  info: string;
2715
2760
  word: string;
2716
2761
  word_id: string;
2717
2762
  [property: string]: any;
2718
2763
  };
2719
- type TextExtra$2 = {
2764
+ type TextExtra$3 = {
2720
2765
  end: number;
2721
2766
  hashtag_id: string;
2722
2767
  hashtag_name: string;
@@ -2727,11 +2772,11 @@ type TextExtra$2 = {
2727
2772
  user_id: string;
2728
2773
  [property: string]: any;
2729
2774
  };
2730
- type Video$4 = {
2775
+ type Video$5 = {
2731
2776
  big_thumbs: BigThumb$1[];
2732
2777
  bit_rate: BitRate$3[];
2733
2778
  bit_rate_audio: BitRateAudio$1[] | null;
2734
- cover: Cover$2;
2779
+ cover: Cover$3;
2735
2780
  download_addr: DownloadAddr$2;
2736
2781
  download_suffix_logo_addr: DownloadSuffixLogoAddr$2;
2737
2782
  duration: number;
@@ -2740,7 +2785,7 @@ type Video$4 = {
2740
2785
  has_download_suffix_logo_addr: boolean;
2741
2786
  height: number;
2742
2787
  meta: string;
2743
- origin_cover: OriginCover$2;
2788
+ origin_cover: OriginCover$3;
2744
2789
  play_addr: VideoPlayAddr$2;
2745
2790
  play_addr_265: PlayAddr265$2;
2746
2791
  play_addr_lowbr: PlayAddrLowbr$1;
@@ -2820,7 +2865,7 @@ type UrlList$1 = {
2820
2865
  main_url: string;
2821
2866
  [property: string]: any;
2822
2867
  };
2823
- type Cover$2 = {
2868
+ type Cover$3 = {
2824
2869
  height: number;
2825
2870
  uri: string;
2826
2871
  url_list: string[];
@@ -2859,7 +2904,7 @@ type GaussianCover$2 = {
2859
2904
  width: number;
2860
2905
  [property: string]: any;
2861
2906
  };
2862
- type OriginCover$2 = {
2907
+ type OriginCover$3 = {
2863
2908
  height: number;
2864
2909
  uri: string;
2865
2910
  url_list: string[];
@@ -2906,7 +2951,7 @@ type RawCover$1 = {
2906
2951
  width: number;
2907
2952
  [property: string]: any;
2908
2953
  };
2909
- type VideoControl$3 = {
2954
+ type VideoControl$4 = {
2910
2955
  allow_douplus: boolean;
2911
2956
  allow_download: boolean;
2912
2957
  allow_duet: boolean;
@@ -2918,10 +2963,10 @@ type VideoControl$3 = {
2918
2963
  allow_stitch: boolean;
2919
2964
  disable_record_reason: string;
2920
2965
  download_ignore_visibility: boolean;
2921
- download_info: DownloadInfo$3;
2966
+ download_info: DownloadInfo$4;
2922
2967
  draft_progress_bar: number;
2923
2968
  duet_ignore_visibility: boolean;
2924
- duet_info: DuetInfo$3;
2969
+ duet_info: DuetInfo$4;
2925
2970
  prevent_download_type: number;
2926
2971
  share_grayed: boolean;
2927
2972
  share_ignore_visibility: boolean;
@@ -2931,23 +2976,23 @@ type VideoControl$3 = {
2931
2976
  timer_status: number;
2932
2977
  [property: string]: any;
2933
2978
  };
2934
- type DownloadInfo$3 = {
2935
- fail_info?: DownloadInfoFailInfo$1;
2979
+ type DownloadInfo$4 = {
2980
+ fail_info?: DownloadInfoFailInfo$2;
2936
2981
  level: number;
2937
2982
  [property: string]: any;
2938
2983
  };
2939
- type DownloadInfoFailInfo$1 = {
2984
+ type DownloadInfoFailInfo$2 = {
2940
2985
  code: number;
2941
2986
  msg: string;
2942
2987
  reason: string;
2943
2988
  [property: string]: any;
2944
2989
  };
2945
- type DuetInfo$3 = {
2946
- fail_info?: DuetInfoFailInfo$1;
2990
+ type DuetInfo$4 = {
2991
+ fail_info?: DuetInfoFailInfo$2;
2947
2992
  level: number;
2948
2993
  [property: string]: any;
2949
2994
  };
2950
- type DuetInfoFailInfo$1 = {
2995
+ type DuetInfoFailInfo$2 = {
2951
2996
  code: number;
2952
2997
  reason: string;
2953
2998
  [property: string]: any;
@@ -3118,7 +3163,7 @@ type GuideSearchWord = {
3118
3163
  word: string;
3119
3164
  [property: string]: any;
3120
3165
  };
3121
- type LogPb$5 = {
3166
+ type LogPb$7 = {
3122
3167
  impr_id: string;
3123
3168
  [property: string]: any;
3124
3169
  };
@@ -3134,21 +3179,21 @@ type TimeCost$1 = {
3134
3179
 
3135
3180
  /** 合辑作品 */
3136
3181
  type DySlidesWork = {
3137
- aweme_detail: AwemeDetail$1;
3138
- log_pb: LogPb$4;
3182
+ aweme_detail: AwemeDetail$2;
3183
+ log_pb: LogPb$6;
3139
3184
  status_code: number;
3140
3185
  [property: string]: any;
3141
3186
  };
3142
- type AwemeDetail$1 = {
3187
+ type AwemeDetail$2 = {
3143
3188
  activity_video_type: number;
3144
3189
  anchors: null;
3145
3190
  authentication_token: string;
3146
- author: Author$3;
3191
+ author: Author$4;
3147
3192
  author_mask_tag: number;
3148
3193
  author_user_id: number;
3149
- aweme_control: AwemeControl$2;
3194
+ aweme_control: AwemeControl$3;
3150
3195
  aweme_id: string;
3151
- aweme_listen_struct: AwemeListenStruct$2;
3196
+ aweme_listen_struct: AwemeListenStruct$3;
3152
3197
  aweme_type: number;
3153
3198
  aweme_type_tags: string;
3154
3199
  boost_status: number;
@@ -3163,9 +3208,9 @@ type AwemeDetail$1 = {
3163
3208
  collection_corner_mark: number;
3164
3209
  comment_gid: number;
3165
3210
  comment_list: null;
3166
- comment_permission_info: CommentPermissionInfo$2;
3211
+ comment_permission_info: CommentPermissionInfo$3;
3167
3212
  commerce_config_data: null;
3168
- component_control: ComponentControl$2;
3213
+ component_control: ComponentControl$3;
3169
3214
  component_info_v2: string;
3170
3215
  cover_labels: null;
3171
3216
  create_scale_type: string[];
@@ -3174,20 +3219,20 @@ type AwemeDetail$1 = {
3174
3219
  disable_relation_bar: number;
3175
3220
  dislike_dimension_list: null;
3176
3221
  dislike_dimension_list_v2: null;
3177
- distribute_circle: DistributeCircle$2;
3222
+ distribute_circle: DistributeCircle$3;
3178
3223
  duet_aggregate_in_music_tab: boolean;
3179
3224
  duration: number;
3180
3225
  ecom_comment_atmosphere_type: number;
3181
3226
  enable_comment_sticker_rec: boolean;
3182
- entertainment_product_info: EntertainmentProductInfo$2;
3183
- fall_card_struct: FallCardStruct$1;
3184
- feed_comment_config: FeedCommentConfig$2;
3227
+ entertainment_product_info: EntertainmentProductInfo$3;
3228
+ fall_card_struct: FallCardStruct$2;
3229
+ feed_comment_config: FeedCommentConfig$3;
3185
3230
  flash_mob_trends: number;
3186
3231
  friend_interaction: number;
3187
3232
  friend_recommend_info: {
3188
3233
  [key: string]: any;
3189
3234
  };
3190
- game_tag_info: GameTagInfo$2;
3235
+ game_tag_info: GameTagInfo$3;
3191
3236
  geofencing: string[];
3192
3237
  geofencing_regions: null;
3193
3238
  group_id: string;
@@ -3195,16 +3240,16 @@ type AwemeDetail$1 = {
3195
3240
  [key: string]: any;
3196
3241
  };
3197
3242
  hybrid_label: null;
3198
- image_album_music_info: ImageAlbumMusicInfo$2;
3243
+ image_album_music_info: ImageAlbumMusicInfo$3;
3199
3244
  image_comment: {
3200
3245
  [key: string]: any;
3201
3246
  };
3202
3247
  image_crop_ctrl: number;
3203
3248
  image_infos: null;
3204
3249
  image_list: null;
3205
- images: Image[];
3250
+ images: Image$1[];
3206
3251
  img_bitrate: null;
3207
- impression_data: ImpressionData$2;
3252
+ impression_data: ImpressionData$3;
3208
3253
  incentive_item_type: number;
3209
3254
  interaction_stickers: null;
3210
3255
  is_24_story: number;
@@ -3221,13 +3266,13 @@ type AwemeDetail$1 = {
3221
3266
  is_top: number;
3222
3267
  is_use_music: boolean;
3223
3268
  item_title: string;
3224
- item_warn_notification: ItemWarnNotification$2;
3269
+ item_warn_notification: ItemWarnNotification$3;
3225
3270
  label_top_text: null;
3226
3271
  libfinsert_task_id: string;
3227
3272
  long_video: null;
3228
3273
  mark_largely_following: boolean;
3229
3274
  media_type: number;
3230
- music: Music$2;
3275
+ music: Music$3;
3231
3276
  nickname_position: null;
3232
3277
  origin_comment_ids: null;
3233
3278
  origin_duet_resource_uri: string;
@@ -3236,20 +3281,20 @@ type AwemeDetail$1 = {
3236
3281
  original_images: null;
3237
3282
  packed_clips: null;
3238
3283
  personal_page_botton_diagnose_style: number;
3239
- photo_search_entrance: PhotoSearchEntrance$2;
3240
- play_progress: PlayProgress$2;
3284
+ photo_search_entrance: PhotoSearchEntrance$3;
3285
+ play_progress: PlayProgress$3;
3241
3286
  position: null;
3242
3287
  preview_title: string;
3243
3288
  preview_video_status: number;
3244
3289
  promotions: string[];
3245
- publish_plus_alienation: PublishPlusAlienation$2;
3290
+ publish_plus_alienation: PublishPlusAlienation$3;
3246
3291
  rate: number;
3247
3292
  region: string;
3248
3293
  relation_labels: null;
3249
- risk_infos: RiskInfos$2;
3294
+ risk_infos: RiskInfos$3;
3250
3295
  seo_info: SeoInfo;
3251
- series_paid_info: SeriesPaidInfo$2;
3252
- share_info: AwemeDetailShareInfo$1;
3296
+ series_paid_info: SeriesPaidInfo$3;
3297
+ share_info: AwemeDetailShareInfo$2;
3253
3298
  share_rec_extra: string;
3254
3299
  share_url: string;
3255
3300
  shoot_way: string;
@@ -3258,27 +3303,27 @@ type AwemeDetail$1 = {
3258
3303
  [key: string]: any;
3259
3304
  };
3260
3305
  social_tag_list: null;
3261
- statistics: Statistics$2;
3262
- status: Status$2;
3263
- suggest_words: SuggestWords$2;
3264
- text_extra: TextExtra$1[];
3306
+ statistics: Statistics$3;
3307
+ status: Status$3;
3308
+ suggest_words: SuggestWords$3;
3309
+ text_extra: TextExtra$2[];
3265
3310
  uniqid_position: null;
3266
3311
  user_digged: number;
3267
3312
  user_recommend_status: number;
3268
3313
  video: AwemeDetailVideo;
3269
- video_control: VideoControl$2;
3314
+ video_control: VideoControl$3;
3270
3315
  video_game_data_channel_config: {
3271
3316
  [key: string]: any;
3272
3317
  };
3273
3318
  video_labels: null;
3274
3319
  video_share_edit_status: number;
3275
- video_tag: VideoTag$2[];
3320
+ video_tag: VideoTag$3[];
3276
3321
  video_text: string[];
3277
- visual_search_info: VisualSearchInfo$2;
3278
- xigua_base_info: XiguaBaseInfo$2;
3322
+ visual_search_info: VisualSearchInfo$3;
3323
+ xigua_base_info: XiguaBaseInfo$3;
3279
3324
  [property: string]: any;
3280
3325
  };
3281
- type Author$3 = {
3326
+ type Author$4 = {
3282
3327
  account_cert_info: string;
3283
3328
  avatar_thumb: AvatarThumb$1;
3284
3329
  awemehts_greet_info: string;
@@ -3286,7 +3331,7 @@ type Author$3 = {
3286
3331
  close_friend_type: number;
3287
3332
  contacts_status: number;
3288
3333
  contrail_list: null;
3289
- cover_url: Coverurl$2[];
3334
+ cover_url: Coverurl$3[];
3290
3335
  create_time: number;
3291
3336
  custom_verify: string;
3292
3337
  data_label_list: null;
@@ -3313,7 +3358,7 @@ type Author$3 = {
3313
3358
  risk_notice_text: string;
3314
3359
  sec_uid: string;
3315
3360
  secret: number;
3316
- share_info: AuthorShareInfo$2;
3361
+ share_info: AuthorShareInfo$3;
3317
3362
  short_id: string;
3318
3363
  signature: string;
3319
3364
  signature_extra: null;
@@ -3337,17 +3382,17 @@ type AvatarThumb$1 = {
3337
3382
  width: number;
3338
3383
  [property: string]: any;
3339
3384
  };
3340
- type Coverurl$2 = {
3385
+ type Coverurl$3 = {
3341
3386
  height?: number;
3342
3387
  uri?: string;
3343
3388
  url_list?: string[];
3344
3389
  width?: number;
3345
3390
  [property: string]: any;
3346
3391
  };
3347
- type AuthorShareInfo$2 = {
3392
+ type AuthorShareInfo$3 = {
3348
3393
  share_desc: string;
3349
3394
  share_desc_info: string;
3350
- share_qrcode_url: ShareQrcodeurl$3;
3395
+ share_qrcode_url: ShareQrcodeurl$4;
3351
3396
  share_title: string;
3352
3397
  share_title_myself: string;
3353
3398
  share_title_other: string;
@@ -3355,21 +3400,21 @@ type AuthorShareInfo$2 = {
3355
3400
  share_weibo_desc: string;
3356
3401
  [property: string]: any;
3357
3402
  };
3358
- type ShareQrcodeurl$3 = {
3403
+ type ShareQrcodeurl$4 = {
3359
3404
  height: number;
3360
3405
  uri: string;
3361
3406
  url_list: string[];
3362
3407
  width: number;
3363
3408
  [property: string]: any;
3364
3409
  };
3365
- type AwemeControl$2 = {
3410
+ type AwemeControl$3 = {
3366
3411
  can_comment: boolean;
3367
3412
  can_forward: boolean;
3368
3413
  can_share: boolean;
3369
3414
  can_show_comment: boolean;
3370
3415
  [property: string]: any;
3371
3416
  };
3372
- type AwemeListenStruct$2 = {
3417
+ type AwemeListenStruct$3 = {
3373
3418
  trace_info: string;
3374
3419
  [property: string]: any;
3375
3420
  };
@@ -3379,7 +3424,7 @@ type ClipPaging = {
3379
3424
  source: string;
3380
3425
  [property: string]: any;
3381
3426
  };
3382
- type CommentPermissionInfo$2 = {
3427
+ type CommentPermissionInfo$3 = {
3383
3428
  can_comment: boolean;
3384
3429
  comment_permission_status: number;
3385
3430
  item_detail_entry: boolean;
@@ -3387,48 +3432,48 @@ type CommentPermissionInfo$2 = {
3387
3432
  toast_guide: boolean;
3388
3433
  [property: string]: any;
3389
3434
  };
3390
- type ComponentControl$2 = {
3435
+ type ComponentControl$3 = {
3391
3436
  data_source_url: string;
3392
3437
  [property: string]: any;
3393
3438
  };
3394
- type DistributeCircle$2 = {
3439
+ type DistributeCircle$3 = {
3395
3440
  campus_block_interaction: boolean;
3396
3441
  distribute_type: number;
3397
3442
  is_campus: boolean;
3398
3443
  [property: string]: any;
3399
3444
  };
3400
- type EntertainmentProductInfo$2 = {
3401
- market_info: MarketInfo$2;
3445
+ type EntertainmentProductInfo$3 = {
3446
+ market_info: MarketInfo$3;
3402
3447
  [property: string]: any;
3403
3448
  };
3404
- type MarketInfo$2 = {
3405
- limit_free: LimitFree$2;
3449
+ type MarketInfo$3 = {
3450
+ limit_free: LimitFree$3;
3406
3451
  [property: string]: any;
3407
3452
  };
3408
- type LimitFree$2 = {
3453
+ type LimitFree$3 = {
3409
3454
  in_free: boolean;
3410
3455
  [property: string]: any;
3411
3456
  };
3412
- type FallCardStruct$1 = {
3457
+ type FallCardStruct$2 = {
3413
3458
  recommend_reason_v2: string;
3414
3459
  [property: string]: any;
3415
3460
  };
3416
- type FeedCommentConfig$2 = {
3461
+ type FeedCommentConfig$3 = {
3417
3462
  author_audit_status: number;
3418
3463
  input_config_text: string;
3419
3464
  [property: string]: any;
3420
3465
  };
3421
- type GameTagInfo$2 = {
3466
+ type GameTagInfo$3 = {
3422
3467
  is_game: boolean;
3423
3468
  [property: string]: any;
3424
3469
  };
3425
- type ImageAlbumMusicInfo$2 = {
3470
+ type ImageAlbumMusicInfo$3 = {
3426
3471
  begin_time: number;
3427
3472
  end_time: number;
3428
3473
  volume: number;
3429
3474
  [property: string]: any;
3430
3475
  };
3431
- type Image = {
3476
+ type Image$1 = {
3432
3477
  clip_type: number;
3433
3478
  download_url_list: string[];
3434
3479
  height: number;
@@ -3553,7 +3598,7 @@ type PlayAddrLowbr = {
3553
3598
  width: number;
3554
3599
  [property: string]: any;
3555
3600
  };
3556
- type ImpressionData$2 = {
3601
+ type ImpressionData$3 = {
3557
3602
  group_id_list_a: string[];
3558
3603
  group_id_list_b: string[];
3559
3604
  group_id_list_c: number[];
@@ -3561,13 +3606,13 @@ type ImpressionData$2 = {
3561
3606
  similar_id_list_b: null;
3562
3607
  [property: string]: any;
3563
3608
  };
3564
- type ItemWarnNotification$2 = {
3609
+ type ItemWarnNotification$3 = {
3565
3610
  content: string;
3566
3611
  show: boolean;
3567
3612
  type: number;
3568
3613
  [property: string]: any;
3569
3614
  };
3570
- type Music$2 = {
3615
+ type Music$3 = {
3571
3616
  album: string;
3572
3617
  artist_user_infos: null;
3573
3618
  artists: string[];
@@ -3579,10 +3624,10 @@ type Music$2 = {
3579
3624
  can_background_play: boolean;
3580
3625
  collect_stat: number;
3581
3626
  cover_color_hsv: CoverColorHsv;
3582
- cover_hd: Coverhd$2;
3583
- cover_large: CoverLarge$2;
3627
+ cover_hd: Coverhd$3;
3628
+ cover_large: CoverLarge$3;
3584
3629
  cover_medium: CoverMedium$1;
3585
- cover_thumb: CoverThumb$2;
3630
+ cover_thumb: CoverThumb$3;
3586
3631
  dmv_auto_show: boolean;
3587
3632
  dsp_status: number;
3588
3633
  duration: number;
@@ -3612,7 +3657,7 @@ type Music$2 = {
3612
3657
  owner_handle: string;
3613
3658
  owner_nickname: string;
3614
3659
  pgc_music_type: number;
3615
- play_url: Playurl$2;
3660
+ play_url: Playurl$3;
3616
3661
  position: null;
3617
3662
  prevent_download: boolean;
3618
3663
  prevent_item_download_status: number;
@@ -3621,9 +3666,9 @@ type Music$2 = {
3621
3666
  reason_type: number;
3622
3667
  redirect: boolean;
3623
3668
  schema_url: string;
3624
- search_impr: SearchImpr$2;
3669
+ search_impr: SearchImpr$3;
3625
3670
  shoot_duration: number;
3626
- song: Song$1;
3671
+ song: Song$2;
3627
3672
  source_platform: number;
3628
3673
  start_time: number;
3629
3674
  status: number;
@@ -3641,14 +3686,14 @@ type CoverColorHsv = {
3641
3686
  v: number;
3642
3687
  [property: string]: any;
3643
3688
  };
3644
- type Coverhd$2 = {
3689
+ type Coverhd$3 = {
3645
3690
  height: number;
3646
3691
  uri: string;
3647
3692
  url_list: string[];
3648
3693
  width: number;
3649
3694
  [property: string]: any;
3650
3695
  };
3651
- type CoverLarge$2 = {
3696
+ type CoverLarge$3 = {
3652
3697
  height: number;
3653
3698
  uri: string;
3654
3699
  url_list: string[];
@@ -3662,14 +3707,14 @@ type CoverMedium$1 = {
3662
3707
  width: number;
3663
3708
  [property: string]: any;
3664
3709
  };
3665
- type CoverThumb$2 = {
3710
+ type CoverThumb$3 = {
3666
3711
  height: number;
3667
3712
  uri: string;
3668
3713
  url_list: string[];
3669
3714
  width: number;
3670
3715
  [property: string]: any;
3671
3716
  };
3672
- type Playurl$2 = {
3717
+ type Playurl$3 = {
3673
3718
  height: number;
3674
3719
  uri: string;
3675
3720
  url_key: string;
@@ -3677,11 +3722,11 @@ type Playurl$2 = {
3677
3722
  width: number;
3678
3723
  [property: string]: any;
3679
3724
  };
3680
- type SearchImpr$2 = {
3725
+ type SearchImpr$3 = {
3681
3726
  entity_id: string;
3682
3727
  [property: string]: any;
3683
3728
  };
3684
- type Song$1 = {
3729
+ type Song$2 = {
3685
3730
  artists: null;
3686
3731
  chorus: Chorus;
3687
3732
  id: number;
@@ -3701,20 +3746,20 @@ type StrongBeaturl$2 = {
3701
3746
  width: number;
3702
3747
  [property: string]: any;
3703
3748
  };
3704
- type PhotoSearchEntrance$2 = {
3749
+ type PhotoSearchEntrance$3 = {
3705
3750
  ecom_type: number;
3706
3751
  [property: string]: any;
3707
3752
  };
3708
- type PlayProgress$2 = {
3753
+ type PlayProgress$3 = {
3709
3754
  last_modified_time: number;
3710
3755
  play_progress: number;
3711
3756
  [property: string]: any;
3712
3757
  };
3713
- type PublishPlusAlienation$2 = {
3758
+ type PublishPlusAlienation$3 = {
3714
3759
  alienation_type: number;
3715
3760
  [property: string]: any;
3716
3761
  };
3717
- type RiskInfos$2 = {
3762
+ type RiskInfos$3 = {
3718
3763
  content: string;
3719
3764
  risk_sink: boolean;
3720
3765
  type: number;
@@ -3726,19 +3771,19 @@ type SeoInfo = {
3726
3771
  ocr_content: string;
3727
3772
  [property: string]: any;
3728
3773
  };
3729
- type SeriesPaidInfo$2 = {
3774
+ type SeriesPaidInfo$3 = {
3730
3775
  item_price: number;
3731
3776
  series_paid_status: number;
3732
3777
  [property: string]: any;
3733
3778
  };
3734
- type AwemeDetailShareInfo$1 = {
3779
+ type AwemeDetailShareInfo$2 = {
3735
3780
  share_desc: string;
3736
3781
  share_desc_info: string;
3737
3782
  share_link_desc: string;
3738
3783
  share_url: string;
3739
3784
  [property: string]: any;
3740
3785
  };
3741
- type Statistics$2 = {
3786
+ type Statistics$3 = {
3742
3787
  admire_count: number;
3743
3788
  aweme_id: string;
3744
3789
  collect_count: number;
@@ -3748,7 +3793,7 @@ type Statistics$2 = {
3748
3793
  share_count: number;
3749
3794
  [property: string]: any;
3750
3795
  };
3751
- type Status$2 = {
3796
+ type Status$3 = {
3752
3797
  allow_share: boolean;
3753
3798
  aweme_id: string;
3754
3799
  in_reviewing: boolean;
@@ -3757,31 +3802,31 @@ type Status$2 = {
3757
3802
  listen_video_status: number;
3758
3803
  part_see: number;
3759
3804
  private_status: number;
3760
- review_result: ReviewResult$2;
3805
+ review_result: ReviewResult$3;
3761
3806
  [property: string]: any;
3762
3807
  };
3763
- type ReviewResult$2 = {
3808
+ type ReviewResult$3 = {
3764
3809
  review_status: number;
3765
3810
  [property: string]: any;
3766
3811
  };
3767
- type SuggestWords$2 = {
3768
- suggest_words: SuggestWord$2[];
3812
+ type SuggestWords$3 = {
3813
+ suggest_words: SuggestWord$3[];
3769
3814
  [property: string]: any;
3770
3815
  };
3771
- type SuggestWord$2 = {
3816
+ type SuggestWord$3 = {
3772
3817
  hint_text?: string;
3773
3818
  icon_url?: string;
3774
3819
  scene?: string;
3775
- words?: Word$3[];
3820
+ words?: Word$4[];
3776
3821
  [property: string]: any;
3777
3822
  };
3778
- type Word$3 = {
3823
+ type Word$4 = {
3779
3824
  info?: string;
3780
3825
  word?: string;
3781
3826
  word_id?: string;
3782
3827
  [property: string]: any;
3783
3828
  };
3784
- type TextExtra$1 = {
3829
+ type TextExtra$2 = {
3785
3830
  caption_end: number;
3786
3831
  caption_start: number;
3787
3832
  end: number;
@@ -3832,7 +3877,7 @@ type FluffyPlayAddr = {
3832
3877
  width: number;
3833
3878
  [property: string]: any;
3834
3879
  };
3835
- type VideoControl$2 = {
3880
+ type VideoControl$3 = {
3836
3881
  allow_douplus: boolean;
3837
3882
  allow_download: boolean;
3838
3883
  allow_duet: boolean;
@@ -3844,10 +3889,10 @@ type VideoControl$2 = {
3844
3889
  allow_stitch: boolean;
3845
3890
  disable_record_reason: string;
3846
3891
  download_ignore_visibility: boolean;
3847
- download_info: DownloadInfo$2;
3892
+ download_info: DownloadInfo$3;
3848
3893
  draft_progress_bar: number;
3849
3894
  duet_ignore_visibility: boolean;
3850
- duet_info: DuetInfo$2;
3895
+ duet_info: DuetInfo$3;
3851
3896
  prevent_download_type: number;
3852
3897
  share_grayed: boolean;
3853
3898
  share_ignore_visibility: boolean;
@@ -3859,48 +3904,48 @@ type VideoControl$2 = {
3859
3904
  timer_status: number;
3860
3905
  [property: string]: any;
3861
3906
  };
3862
- type DownloadInfo$2 = {
3863
- fail_info: DownloadInfoFailInfo;
3907
+ type DownloadInfo$3 = {
3908
+ fail_info: DownloadInfoFailInfo$1;
3864
3909
  level: number;
3865
3910
  [property: string]: any;
3866
3911
  };
3867
- type DownloadInfoFailInfo = {
3912
+ type DownloadInfoFailInfo$1 = {
3868
3913
  code: number;
3869
3914
  msg: string;
3870
3915
  reason: string;
3871
3916
  [property: string]: any;
3872
3917
  };
3873
- type DuetInfo$2 = {
3874
- fail_info: DuetInfoFailInfo;
3918
+ type DuetInfo$3 = {
3919
+ fail_info: DuetInfoFailInfo$1;
3875
3920
  level: number;
3876
3921
  [property: string]: any;
3877
3922
  };
3878
- type DuetInfoFailInfo = {
3923
+ type DuetInfoFailInfo$1 = {
3879
3924
  code: number;
3880
3925
  reason: string;
3881
3926
  [property: string]: any;
3882
3927
  };
3883
- type VideoTag$2 = {
3928
+ type VideoTag$3 = {
3884
3929
  level: number;
3885
3930
  tag_id: number;
3886
3931
  tag_name: string;
3887
3932
  [property: string]: any;
3888
3933
  };
3889
- type VisualSearchInfo$2 = {
3934
+ type VisualSearchInfo$3 = {
3890
3935
  is_ecom_img: boolean;
3891
3936
  is_high_accuracy_ecom: boolean;
3892
3937
  is_high_recall_ecom: boolean;
3893
3938
  is_show_img_entrance: boolean;
3894
3939
  [property: string]: any;
3895
3940
  };
3896
- type XiguaBaseInfo$2 = {
3941
+ type XiguaBaseInfo$3 = {
3897
3942
  item_id: number;
3898
3943
  star_altar_order_id: number;
3899
3944
  star_altar_type: number;
3900
3945
  status: number;
3901
3946
  [property: string]: any;
3902
3947
  };
3903
- type LogPb$4 = {
3948
+ type LogPb$6 = {
3904
3949
  impr_id: string;
3905
3950
  [property: string]: any;
3906
3951
  };
@@ -3923,7 +3968,7 @@ type Datum$1 = {
3923
3968
  params?: DatumParams;
3924
3969
  source?: string;
3925
3970
  type?: string;
3926
- words?: Word$2[];
3971
+ words?: Word$3[];
3927
3972
  [property: string]: any;
3928
3973
  };
3929
3974
  type DatumParams = {
@@ -3941,7 +3986,7 @@ type PurpleExtraInfo = {
3941
3986
  src_group_id: string;
3942
3987
  [property: string]: any;
3943
3988
  };
3944
- type Word$2 = {
3989
+ type Word$3 = {
3945
3990
  id: string;
3946
3991
  params: WordParams;
3947
3992
  word: string;
@@ -3975,7 +4020,7 @@ type TimeCost = {
3975
4020
 
3976
4021
  type DyUserInfo = {
3977
4022
  extra: Extra$1;
3978
- log_pb: LogPb$3;
4023
+ log_pb: LogPb$5;
3979
4024
  status_code: number;
3980
4025
  status_msg: null;
3981
4026
  user: User$1;
@@ -3987,7 +4032,7 @@ type Extra$1 = {
3987
4032
  now: number;
3988
4033
  [property: string]: any;
3989
4034
  };
3990
- type LogPb$3 = {
4035
+ type LogPb$5 = {
3991
4036
  impr_id: string;
3992
4037
  [property: string]: any;
3993
4038
  };
@@ -3997,7 +4042,7 @@ type User$1 = {
3997
4042
  avatar_168x168: Avatar168X168;
3998
4043
  avatar_300x300: Avatar300X300;
3999
4044
  avatar_larger: AvatarLarger;
4000
- avatar_medium: AvatarMedium$2;
4045
+ avatar_medium: AvatarMedium$3;
4001
4046
  avatar_thumb: AvatarThumb;
4002
4047
  aweme_count: number;
4003
4048
  aweme_count_correction_threshold: number;
@@ -4146,7 +4191,7 @@ type AvatarLarger = {
4146
4191
  width: number;
4147
4192
  [property: string]: any;
4148
4193
  };
4149
- type AvatarMedium$2 = {
4194
+ type AvatarMedium$3 = {
4150
4195
  height: number;
4151
4196
  uri: string;
4152
4197
  url_list: string[];
@@ -4250,7 +4295,7 @@ type ShareInfo = {
4250
4295
  life_share_ext: string;
4251
4296
  share_desc: string;
4252
4297
  share_image_url: ShareImageurl;
4253
- share_qrcode_url: ShareQrcodeurl$2;
4298
+ share_qrcode_url: ShareQrcodeurl$3;
4254
4299
  share_title: string;
4255
4300
  share_url: string;
4256
4301
  share_weibo_desc: string;
@@ -4261,7 +4306,7 @@ type ShareImageurl = {
4261
4306
  url_list: string[];
4262
4307
  [property: string]: any;
4263
4308
  };
4264
- type ShareQrcodeurl$2 = {
4309
+ type ShareQrcodeurl$3 = {
4265
4310
  uri: string;
4266
4311
  url_list: string[];
4267
4312
  [property: string]: any;
@@ -4308,7 +4353,7 @@ type Data$f = {
4308
4353
  data: Datum[];
4309
4354
  enter_mode: number;
4310
4355
  enter_room_id: string;
4311
- extra: DataExtra;
4356
+ extra: DataExtra$1;
4312
4357
  login_lead: LoginLead;
4313
4358
  partition_road_map: PartitionRoadMap;
4314
4359
  qrcode_url: string;
@@ -5741,7 +5786,7 @@ type General = {
5741
5786
  GroupPriority: number[];
5742
5787
  [property: string]: any;
5743
5788
  };
5744
- type DataExtra = {
5789
+ type DataExtra$1 = {
5745
5790
  digg_color: string;
5746
5791
  is_official_channel: boolean;
5747
5792
  pay_scores: string;
@@ -6385,7 +6430,7 @@ type UserLiveVideosExtra = {
6385
6430
  type DyUserPostVideos = {
6386
6431
  aweme_list: AwemeList[];
6387
6432
  has_more: number;
6388
- log_pb: LogPb$2;
6433
+ log_pb: LogPb$4;
6389
6434
  max_cursor: number;
6390
6435
  min_cursor: number;
6391
6436
  post_serial: number;
@@ -6401,12 +6446,12 @@ type AwemeList = {
6401
6446
  anchor_info: AnchorInfo;
6402
6447
  anchors: null;
6403
6448
  authentication_token: string;
6404
- author: Author$2;
6449
+ author: Author$3;
6405
6450
  author_mask_tag: number;
6406
6451
  author_user_id: number;
6407
- aweme_control: AwemeControl$1;
6452
+ aweme_control: AwemeControl$2;
6408
6453
  aweme_id: string;
6409
- aweme_listen_struct: AwemeListenStruct$1;
6454
+ aweme_listen_struct: AwemeListenStruct$2;
6410
6455
  aweme_type: number;
6411
6456
  aweme_type_tags: string;
6412
6457
  boost_status: number;
@@ -6419,9 +6464,9 @@ type AwemeList = {
6419
6464
  collection_corner_mark: number;
6420
6465
  comment_gid: number;
6421
6466
  comment_list: null;
6422
- comment_permission_info: CommentPermissionInfo$1;
6467
+ comment_permission_info: CommentPermissionInfo$2;
6423
6468
  commerce_config_data: null;
6424
- component_control: ComponentControl$1;
6469
+ component_control: ComponentControl$2;
6425
6470
  component_info_v2: string;
6426
6471
  cooperation_info?: CooperationInfo;
6427
6472
  cover_labels: null;
@@ -6432,18 +6477,18 @@ type AwemeList = {
6432
6477
  disable_relation_bar: number;
6433
6478
  dislike_dimension_list: null;
6434
6479
  dislike_dimension_list_v2: null;
6435
- distribute_circle: DistributeCircle$1;
6480
+ distribute_circle: DistributeCircle$2;
6436
6481
  duet_aggregate_in_music_tab: boolean;
6437
6482
  duration: number;
6438
6483
  enable_comment_sticker_rec: boolean;
6439
- entertainment_product_info: EntertainmentProductInfo$1;
6440
- feed_comment_config: FeedCommentConfig$1;
6484
+ entertainment_product_info: EntertainmentProductInfo$2;
6485
+ feed_comment_config: FeedCommentConfig$2;
6441
6486
  flash_mob_trends: number;
6442
6487
  friend_interaction: number;
6443
6488
  friend_recommend_info: {
6444
6489
  [key: string]: any;
6445
6490
  };
6446
- game_tag_info: GameTagInfo$1;
6491
+ game_tag_info: GameTagInfo$2;
6447
6492
  geofencing: string[];
6448
6493
  geofencing_regions: null;
6449
6494
  group_id: string;
@@ -6451,7 +6496,7 @@ type AwemeList = {
6451
6496
  horizontal_type: number;
6452
6497
  hot_list: HotList;
6453
6498
  hybrid_label: null;
6454
- image_album_music_info: ImageAlbumMusicInfo$1;
6499
+ image_album_music_info: ImageAlbumMusicInfo$2;
6455
6500
  image_comment: {
6456
6501
  [key: string]: any;
6457
6502
  };
@@ -6460,7 +6505,7 @@ type AwemeList = {
6460
6505
  image_list: null;
6461
6506
  images: null;
6462
6507
  img_bitrate: null;
6463
- impression_data: ImpressionData$1;
6508
+ impression_data: ImpressionData$2;
6464
6509
  interaction_stickers: null;
6465
6510
  is_24_story: number;
6466
6511
  is_ads: boolean;
@@ -6473,14 +6518,14 @@ type AwemeList = {
6473
6518
  is_top: number;
6474
6519
  is_use_music: boolean;
6475
6520
  item_title: string;
6476
- item_warn_notification: ItemWarnNotification$1;
6521
+ item_warn_notification: ItemWarnNotification$2;
6477
6522
  jump_tab_info_list: null;
6478
6523
  label_top_text: null;
6479
6524
  libfinsert_task_id: string;
6480
6525
  long_video: null;
6481
6526
  mark_largely_following: boolean;
6482
6527
  media_type: number;
6483
- music: Music$1;
6528
+ music: Music$2;
6484
6529
  mv_info: null;
6485
6530
  nickname_position: null;
6486
6531
  origin_comment_ids: null;
@@ -6491,19 +6536,19 @@ type AwemeList = {
6491
6536
  original_images: null;
6492
6537
  packed_clips: null;
6493
6538
  personal_page_botton_diagnose_style: number;
6494
- photo_search_entrance: PhotoSearchEntrance$1;
6495
- play_progress: PlayProgress$1;
6539
+ photo_search_entrance: PhotoSearchEntrance$2;
6540
+ play_progress: PlayProgress$2;
6496
6541
  position: null;
6497
6542
  prevent_download: boolean;
6498
6543
  promotions: string[];
6499
- publish_plus_alienation: PublishPlusAlienation$1;
6544
+ publish_plus_alienation: PublishPlusAlienation$2;
6500
6545
  ref_tts_id_list: null;
6501
6546
  ref_voice_modify_id_list: null;
6502
6547
  region: string;
6503
6548
  relation_labels: null;
6504
6549
  reply_smart_emojis: null;
6505
- risk_infos: RiskInfos$1;
6506
- series_paid_info: SeriesPaidInfo$1;
6550
+ risk_infos: RiskInfos$2;
6551
+ series_paid_info: SeriesPaidInfo$2;
6507
6552
  share_info: AwemeListShareInfo;
6508
6553
  share_url: string;
6509
6554
  shoot_way: string;
@@ -6514,29 +6559,29 @@ type AwemeList = {
6514
6559
  social_tag_list: null;
6515
6560
  standard_bar_info_list: null;
6516
6561
  star_atlas_info: StarAtlasInfo;
6517
- statistics: Statistics$1;
6518
- status: Status$1;
6519
- suggest_words: SuggestWords$1;
6520
- text_extra: TextExtra[];
6562
+ statistics: Statistics$2;
6563
+ status: Status$2;
6564
+ suggest_words: SuggestWords$2;
6565
+ text_extra: TextExtra$1[];
6521
6566
  trends_infos: null;
6522
6567
  tts_id_list: null;
6523
6568
  uniqid_position: null;
6524
6569
  user_digged: number;
6525
6570
  user_recommend_status: number;
6526
- video: Video$3;
6527
- video_control: VideoControl$1;
6571
+ video: Video$4;
6572
+ video_control: VideoControl$2;
6528
6573
  video_game_data_channel_config: {
6529
6574
  [key: string]: any;
6530
6575
  };
6531
6576
  video_labels: null;
6532
6577
  video_reply_info?: VideoReplyInfo;
6533
6578
  video_share_edit_status: number;
6534
- video_tag: VideoTag$1[];
6579
+ video_tag: VideoTag$2[];
6535
6580
  video_text: null;
6536
- visual_search_info: VisualSearchInfo$1;
6581
+ visual_search_info: VisualSearchInfo$2;
6537
6582
  voice_modify_id_list: null;
6538
6583
  vtag_search: VtagSearch$1;
6539
- xigua_base_info: XiguaBaseInfo$1;
6584
+ xigua_base_info: XiguaBaseInfo$2;
6540
6585
  yumme_recreason: null;
6541
6586
  [property: string]: any;
6542
6587
  };
@@ -6569,10 +6614,10 @@ type StyleInfo = {
6569
6614
  scene_icon: string;
6570
6615
  [property: string]: any;
6571
6616
  };
6572
- type Author$2 = {
6617
+ type Author$3 = {
6573
6618
  account_cert_info: string;
6574
6619
  avatar_schema_list: null;
6575
- avatar_thumb: AuthorAvatarThumb$1;
6620
+ avatar_thumb: AuthorAvatarThumb$2;
6576
6621
  ban_user_functions: null;
6577
6622
  batch_unfollow_contain_tabs: null;
6578
6623
  batch_unfollow_relation_desc: null;
@@ -6582,7 +6627,7 @@ type Author$2 = {
6582
6627
  card_sort_priority: null;
6583
6628
  cf_list: null;
6584
6629
  contrail_list: null;
6585
- cover_url: Coverurl$1[];
6630
+ cover_url: Coverurl$2[];
6586
6631
  creator_tag_list: null;
6587
6632
  custom_verify: string;
6588
6633
  data_label_list: null;
@@ -6609,7 +6654,7 @@ type Author$2 = {
6609
6654
  profile_mob_params: null;
6610
6655
  risk_notice_text: string;
6611
6656
  sec_uid: string;
6612
- share_info: AuthorShareInfo$1;
6657
+ share_info: AuthorShareInfo$2;
6613
6658
  signature_extra: null;
6614
6659
  special_people_labels: null;
6615
6660
  text_extra: null;
@@ -6620,24 +6665,24 @@ type Author$2 = {
6620
6665
  white_cover_url: null;
6621
6666
  [property: string]: any;
6622
6667
  };
6623
- type AuthorAvatarThumb$1 = {
6668
+ type AuthorAvatarThumb$2 = {
6624
6669
  height: number;
6625
6670
  uri: string;
6626
6671
  url_list: string[];
6627
6672
  width: number;
6628
6673
  [property: string]: any;
6629
6674
  };
6630
- type Coverurl$1 = {
6675
+ type Coverurl$2 = {
6631
6676
  height: number;
6632
6677
  uri: string;
6633
6678
  url_list: string[];
6634
6679
  width: number;
6635
6680
  [property: string]: any;
6636
6681
  };
6637
- type AuthorShareInfo$1 = {
6682
+ type AuthorShareInfo$2 = {
6638
6683
  share_desc: string;
6639
6684
  share_desc_info: string;
6640
- share_qrcode_url: ShareQrcodeurl$1;
6685
+ share_qrcode_url: ShareQrcodeurl$2;
6641
6686
  share_title: string;
6642
6687
  share_title_myself: string;
6643
6688
  share_title_other: string;
@@ -6645,25 +6690,25 @@ type AuthorShareInfo$1 = {
6645
6690
  share_weibo_desc: string;
6646
6691
  [property: string]: any;
6647
6692
  };
6648
- type ShareQrcodeurl$1 = {
6693
+ type ShareQrcodeurl$2 = {
6649
6694
  height: number;
6650
6695
  uri: string;
6651
6696
  url_list: string[];
6652
6697
  width: number;
6653
6698
  [property: string]: any;
6654
6699
  };
6655
- type AwemeControl$1 = {
6700
+ type AwemeControl$2 = {
6656
6701
  can_comment: boolean;
6657
6702
  can_forward: boolean;
6658
6703
  can_share: boolean;
6659
6704
  can_show_comment: boolean;
6660
6705
  [property: string]: any;
6661
6706
  };
6662
- type AwemeListenStruct$1 = {
6707
+ type AwemeListenStruct$2 = {
6663
6708
  trace_info: string;
6664
6709
  [property: string]: any;
6665
6710
  };
6666
- type CommentPermissionInfo$1 = {
6711
+ type CommentPermissionInfo$2 = {
6667
6712
  can_comment: boolean;
6668
6713
  comment_permission_status: number;
6669
6714
  item_detail_entry: boolean;
@@ -6671,7 +6716,7 @@ type CommentPermissionInfo$1 = {
6671
6716
  toast_guide: boolean;
6672
6717
  [property: string]: any;
6673
6718
  };
6674
- type ComponentControl$1 = {
6719
+ type ComponentControl$2 = {
6675
6720
  data_source_url: string;
6676
6721
  [property: string]: any;
6677
6722
  };
@@ -6725,32 +6770,32 @@ type Activity$2 = {
6725
6770
  type: number;
6726
6771
  [property: string]: any;
6727
6772
  };
6728
- type DistributeCircle$1 = {
6773
+ type DistributeCircle$2 = {
6729
6774
  campus_block_interaction: boolean;
6730
6775
  distribute_type: number;
6731
6776
  is_campus: boolean;
6732
6777
  [property: string]: any;
6733
6778
  };
6734
- type EntertainmentProductInfo$1 = {
6735
- market_info: MarketInfo$1;
6779
+ type EntertainmentProductInfo$2 = {
6780
+ market_info: MarketInfo$2;
6736
6781
  sub_title: null;
6737
6782
  [property: string]: any;
6738
6783
  };
6739
- type MarketInfo$1 = {
6740
- limit_free: LimitFree$1;
6784
+ type MarketInfo$2 = {
6785
+ limit_free: LimitFree$2;
6741
6786
  marketing_tag: null;
6742
6787
  [property: string]: any;
6743
6788
  };
6744
- type LimitFree$1 = {
6789
+ type LimitFree$2 = {
6745
6790
  in_free: boolean;
6746
6791
  [property: string]: any;
6747
6792
  };
6748
- type FeedCommentConfig$1 = {
6793
+ type FeedCommentConfig$2 = {
6749
6794
  author_audit_status: number;
6750
6795
  input_config_text: string;
6751
6796
  [property: string]: any;
6752
6797
  };
6753
- type GameTagInfo$1 = {
6798
+ type GameTagInfo$2 = {
6754
6799
  is_game: boolean;
6755
6800
  [property: string]: any;
6756
6801
  };
@@ -6772,13 +6817,13 @@ type HotList = {
6772
6817
  view_count: number;
6773
6818
  [property: string]: any;
6774
6819
  };
6775
- type ImageAlbumMusicInfo$1 = {
6820
+ type ImageAlbumMusicInfo$2 = {
6776
6821
  begin_time: number;
6777
6822
  end_time: number;
6778
6823
  volume: number;
6779
6824
  [property: string]: any;
6780
6825
  };
6781
- type ImpressionData$1 = {
6826
+ type ImpressionData$2 = {
6782
6827
  group_id_list_a: string[];
6783
6828
  group_id_list_b: string[];
6784
6829
  group_id_list_c: string[];
@@ -6786,13 +6831,13 @@ type ImpressionData$1 = {
6786
6831
  similar_id_list_b: number[] | null;
6787
6832
  [property: string]: any;
6788
6833
  };
6789
- type ItemWarnNotification$1 = {
6834
+ type ItemWarnNotification$2 = {
6790
6835
  content: string;
6791
6836
  show: boolean;
6792
6837
  type: number;
6793
6838
  [property: string]: any;
6794
6839
  };
6795
- type Music$1 = {
6840
+ type Music$2 = {
6796
6841
  album: string;
6797
6842
  artist_user_infos: null;
6798
6843
  artists: string[];
@@ -6801,16 +6846,16 @@ type Music$1 = {
6801
6846
  author_deleted: boolean;
6802
6847
  author_position: null;
6803
6848
  author_status: number;
6804
- avatar_large: AvatarLarge$1;
6805
- avatar_medium: AvatarMedium$1;
6806
- avatar_thumb: MusicAvatarThumb$1;
6849
+ avatar_large: AvatarLarge$2;
6850
+ avatar_medium: AvatarMedium$2;
6851
+ avatar_thumb: MusicAvatarThumb$2;
6807
6852
  binded_challenge_id: number;
6808
6853
  can_background_play: boolean;
6809
6854
  collect_stat: number;
6810
- cover_hd: Coverhd$1;
6811
- cover_large: CoverLarge$1;
6812
- cover_medium: MusicCoverMedium;
6813
- cover_thumb: CoverThumb$1;
6855
+ cover_hd: Coverhd$2;
6856
+ cover_large: CoverLarge$2;
6857
+ cover_medium: MusicCoverMedium$1;
6858
+ cover_thumb: CoverThumb$2;
6814
6859
  dmv_auto_show: boolean;
6815
6860
  dsp_status: number;
6816
6861
  duration: number;
@@ -6829,7 +6874,7 @@ type Music$1 = {
6829
6874
  is_restricted: boolean;
6830
6875
  is_video_self_see: boolean;
6831
6876
  lyric_short_position: null;
6832
- matched_pgc_sound?: MatchedPgcSound;
6877
+ matched_pgc_sound?: MatchedPgcSound$1;
6833
6878
  mid: string;
6834
6879
  music_chart_ranks: null;
6835
6880
  music_collect_count: number;
@@ -6842,7 +6887,7 @@ type Music$1 = {
6842
6887
  owner_id: string;
6843
6888
  owner_nickname: string;
6844
6889
  pgc_music_type: number;
6845
- play_url: Playurl$1;
6890
+ play_url: Playurl$2;
6846
6891
  position: null;
6847
6892
  prevent_download: boolean;
6848
6893
  prevent_item_download_status: number;
@@ -6851,10 +6896,10 @@ type Music$1 = {
6851
6896
  reason_type: number;
6852
6897
  redirect: boolean;
6853
6898
  schema_url: string;
6854
- search_impr: SearchImpr$1;
6899
+ search_impr: SearchImpr$2;
6855
6900
  sec_uid: string;
6856
6901
  shoot_duration: number;
6857
- song?: Song;
6902
+ song?: Song$1;
6858
6903
  source_platform: number;
6859
6904
  start_time: number;
6860
6905
  status: number;
@@ -6866,71 +6911,71 @@ type Music$1 = {
6866
6911
  video_duration: number;
6867
6912
  [property: string]: any;
6868
6913
  };
6869
- type AvatarLarge$1 = {
6914
+ type AvatarLarge$2 = {
6870
6915
  height: number;
6871
6916
  uri: string;
6872
6917
  url_list: string[];
6873
6918
  width: number;
6874
6919
  [property: string]: any;
6875
6920
  };
6876
- type AvatarMedium$1 = {
6921
+ type AvatarMedium$2 = {
6877
6922
  height: number;
6878
6923
  uri: string;
6879
6924
  url_list: string[];
6880
6925
  width: number;
6881
6926
  [property: string]: any;
6882
6927
  };
6883
- type MusicAvatarThumb$1 = {
6928
+ type MusicAvatarThumb$2 = {
6884
6929
  height: number;
6885
6930
  uri: string;
6886
6931
  url_list: string[];
6887
6932
  width: number;
6888
6933
  [property: string]: any;
6889
6934
  };
6890
- type Coverhd$1 = {
6935
+ type Coverhd$2 = {
6891
6936
  height: number;
6892
6937
  uri: string;
6893
6938
  url_list: string[];
6894
6939
  width: number;
6895
6940
  [property: string]: any;
6896
6941
  };
6897
- type CoverLarge$1 = {
6942
+ type CoverLarge$2 = {
6898
6943
  height: number;
6899
6944
  uri: string;
6900
6945
  url_list: string[];
6901
6946
  width: number;
6902
6947
  [property: string]: any;
6903
6948
  };
6904
- type MusicCoverMedium = {
6949
+ type MusicCoverMedium$1 = {
6905
6950
  height: number;
6906
6951
  uri: string;
6907
6952
  url_list: string[];
6908
6953
  width: number;
6909
6954
  [property: string]: any;
6910
6955
  };
6911
- type CoverThumb$1 = {
6956
+ type CoverThumb$2 = {
6912
6957
  height: number;
6913
6958
  uri: string;
6914
6959
  url_list: string[];
6915
6960
  width: number;
6916
6961
  [property: string]: any;
6917
6962
  };
6918
- type MatchedPgcSound = {
6963
+ type MatchedPgcSound$1 = {
6919
6964
  author: string;
6920
- cover_medium: MatchedPgcSoundCoverMedium;
6965
+ cover_medium: MatchedPgcSoundCoverMedium$1;
6921
6966
  mixed_author: string;
6922
6967
  mixed_title: string;
6923
6968
  title: string;
6924
6969
  [property: string]: any;
6925
6970
  };
6926
- type MatchedPgcSoundCoverMedium = {
6971
+ type MatchedPgcSoundCoverMedium$1 = {
6927
6972
  height: number;
6928
6973
  uri: string;
6929
6974
  url_list: string[];
6930
6975
  width: number;
6931
6976
  [property: string]: any;
6932
6977
  };
6933
- type Playurl$1 = {
6978
+ type Playurl$2 = {
6934
6979
  height: number;
6935
6980
  uri: string;
6936
6981
  url_key: string;
@@ -6938,11 +6983,11 @@ type Playurl$1 = {
6938
6983
  width: number;
6939
6984
  [property: string]: any;
6940
6985
  };
6941
- type SearchImpr$1 = {
6986
+ type SearchImpr$2 = {
6942
6987
  entity_id: string;
6943
6988
  [property: string]: any;
6944
6989
  };
6945
- type Song = {
6990
+ type Song$1 = {
6946
6991
  artists: null;
6947
6992
  chorus_v3_infos: null;
6948
6993
  id: number;
@@ -6956,20 +7001,20 @@ type StrongBeaturl$1 = {
6956
7001
  width: number;
6957
7002
  [property: string]: any;
6958
7003
  };
6959
- type PhotoSearchEntrance$1 = {
7004
+ type PhotoSearchEntrance$2 = {
6960
7005
  ecom_type: number;
6961
7006
  [property: string]: any;
6962
7007
  };
6963
- type PlayProgress$1 = {
7008
+ type PlayProgress$2 = {
6964
7009
  last_modified_time: number;
6965
7010
  play_progress: number;
6966
7011
  [property: string]: any;
6967
7012
  };
6968
- type PublishPlusAlienation$1 = {
7013
+ type PublishPlusAlienation$2 = {
6969
7014
  alienation_type: number;
6970
7015
  [property: string]: any;
6971
7016
  };
6972
- type RiskInfos$1 = {
7017
+ type RiskInfos$2 = {
6973
7018
  content: string;
6974
7019
  risk_sink: boolean;
6975
7020
  type: number;
@@ -6977,7 +7022,7 @@ type RiskInfos$1 = {
6977
7022
  warn: boolean;
6978
7023
  [property: string]: any;
6979
7024
  };
6980
- type SeriesPaidInfo$1 = {
7025
+ type SeriesPaidInfo$2 = {
6981
7026
  item_price: number;
6982
7027
  series_paid_status: number;
6983
7028
  [property: string]: any;
@@ -6993,7 +7038,7 @@ type StarAtlasInfo = {
6993
7038
  track_url_list: null;
6994
7039
  [property: string]: any;
6995
7040
  };
6996
- type Statistics$1 = {
7041
+ type Statistics$2 = {
6997
7042
  admire_count: number;
6998
7043
  collect_count: number;
6999
7044
  comment_count: number;
@@ -7002,7 +7047,7 @@ type Statistics$1 = {
7002
7047
  share_count: number;
7003
7048
  [property: string]: any;
7004
7049
  };
7005
- type Status$1 = {
7050
+ type Status$2 = {
7006
7051
  allow_share: boolean;
7007
7052
  in_reviewing: boolean;
7008
7053
  is_delete: boolean;
@@ -7010,31 +7055,31 @@ type Status$1 = {
7010
7055
  listen_video_status: number;
7011
7056
  part_see: number;
7012
7057
  private_status: number;
7013
- review_result: ReviewResult$1;
7058
+ review_result: ReviewResult$2;
7014
7059
  [property: string]: any;
7015
7060
  };
7016
- type ReviewResult$1 = {
7061
+ type ReviewResult$2 = {
7017
7062
  review_status: number;
7018
7063
  [property: string]: any;
7019
7064
  };
7020
- type SuggestWords$1 = {
7021
- suggest_words: SuggestWord$1[];
7065
+ type SuggestWords$2 = {
7066
+ suggest_words: SuggestWord$2[];
7022
7067
  [property: string]: any;
7023
7068
  };
7024
- type SuggestWord$1 = {
7069
+ type SuggestWord$2 = {
7025
7070
  hint_text: string;
7026
7071
  icon_url: string;
7027
7072
  scene: string;
7028
- words: Word$1[];
7073
+ words: Word$2[];
7029
7074
  [property: string]: any;
7030
7075
  };
7031
- type Word$1 = {
7076
+ type Word$2 = {
7032
7077
  info: string;
7033
7078
  word: string;
7034
7079
  word_id: string;
7035
7080
  [property: string]: any;
7036
7081
  };
7037
- type TextExtra = {
7082
+ type TextExtra$1 = {
7038
7083
  caption_end: number;
7039
7084
  caption_start: number;
7040
7085
  end: number;
@@ -7050,13 +7095,13 @@ type TextExtra = {
7050
7095
  user_id?: string;
7051
7096
  [property: string]: any;
7052
7097
  };
7053
- type Video$3 = {
7098
+ type Video$4 = {
7054
7099
  animated_cover: AnimatedCover;
7055
7100
  audio: Audio$2;
7056
7101
  big_thumbs: BigThumb[];
7057
7102
  bit_rate: BitRate$1[];
7058
7103
  bit_rate_audio: BitRateAudio[] | null;
7059
- cover: Cover$1;
7104
+ cover: Cover$2;
7060
7105
  duration: number;
7061
7106
  dynamic_cover: DynamicCover$1;
7062
7107
  format: string;
@@ -7067,7 +7112,7 @@ type Video$3 = {
7067
7112
  is_source_HDR: number;
7068
7113
  meta: string;
7069
7114
  misc_download_addrs?: string;
7070
- origin_cover: OriginCover$1;
7115
+ origin_cover: OriginCover$2;
7071
7116
  play_addr: VideoPlayAddr$1;
7072
7117
  play_addr_265: PlayAddr265$1;
7073
7118
  play_addr_h264: PlayAddrH264$1;
@@ -7156,7 +7201,7 @@ type UrlList = {
7156
7201
  main_url: string;
7157
7202
  [property: string]: any;
7158
7203
  };
7159
- type Cover$1 = {
7204
+ type Cover$2 = {
7160
7205
  height: number;
7161
7206
  uri: string;
7162
7207
  url_list: string[];
@@ -7177,7 +7222,7 @@ type GaussianCover$1 = {
7177
7222
  width: number;
7178
7223
  [property: string]: any;
7179
7224
  };
7180
- type OriginCover$1 = {
7225
+ type OriginCover$2 = {
7181
7226
  height: number;
7182
7227
  uri: string;
7183
7228
  url_list: string[];
@@ -7224,7 +7269,7 @@ type RawCover = {
7224
7269
  width: number;
7225
7270
  [property: string]: any;
7226
7271
  };
7227
- type VideoControl$1 = {
7272
+ type VideoControl$2 = {
7228
7273
  allow_douplus: boolean;
7229
7274
  allow_download: boolean;
7230
7275
  allow_duet: boolean;
@@ -7236,10 +7281,10 @@ type VideoControl$1 = {
7236
7281
  allow_stitch: boolean;
7237
7282
  disable_record_reason: string;
7238
7283
  download_ignore_visibility: boolean;
7239
- download_info: DownloadInfo$1;
7284
+ download_info: DownloadInfo$2;
7240
7285
  draft_progress_bar: number;
7241
7286
  duet_ignore_visibility: boolean;
7242
- duet_info: DuetInfo$1;
7287
+ duet_info: DuetInfo$2;
7243
7288
  prevent_download_type: number;
7244
7289
  share_grayed: boolean;
7245
7290
  share_ignore_visibility: boolean;
@@ -7251,11 +7296,11 @@ type VideoControl$1 = {
7251
7296
  timer_status: number;
7252
7297
  [property: string]: any;
7253
7298
  };
7254
- type DownloadInfo$1 = {
7299
+ type DownloadInfo$2 = {
7255
7300
  level: number;
7256
7301
  [property: string]: any;
7257
7302
  };
7258
- type DuetInfo$1 = {
7303
+ type DuetInfo$2 = {
7259
7304
  level: number;
7260
7305
  [property: string]: any;
7261
7306
  };
@@ -7266,13 +7311,13 @@ type VideoReplyInfo = {
7266
7311
  reply_user_id: number;
7267
7312
  [property: string]: any;
7268
7313
  };
7269
- type VideoTag$1 = {
7314
+ type VideoTag$2 = {
7270
7315
  level: number;
7271
7316
  tag_id: number;
7272
7317
  tag_name: string;
7273
7318
  [property: string]: any;
7274
7319
  };
7275
- type VisualSearchInfo$1 = {
7320
+ type VisualSearchInfo$2 = {
7276
7321
  is_ecom_img: boolean;
7277
7322
  is_high_accuracy_ecom: boolean;
7278
7323
  is_high_recall_ecom: boolean;
@@ -7285,35 +7330,35 @@ type VtagSearch$1 = {
7285
7330
  vtag_enable: boolean;
7286
7331
  [property: string]: any;
7287
7332
  };
7288
- type XiguaBaseInfo$1 = {
7333
+ type XiguaBaseInfo$2 = {
7289
7334
  item_id: number;
7290
7335
  star_altar_order_id: number;
7291
7336
  star_altar_type: number;
7292
7337
  status: number;
7293
7338
  [property: string]: any;
7294
7339
  };
7295
- type LogPb$2 = {
7340
+ type LogPb$4 = {
7296
7341
  impr_id: string;
7297
7342
  [property: string]: any;
7298
7343
  };
7299
7344
 
7300
7345
  /** 单个视频作品 */
7301
7346
  type DyVideoWork = {
7302
- aweme_detail: AwemeDetail;
7303
- log_pb: LogPb$1;
7347
+ aweme_detail: AwemeDetail$1;
7348
+ log_pb: LogPb$3;
7304
7349
  status_code: number;
7305
7350
  [property: string]: any;
7306
7351
  };
7307
- type AwemeDetail = {
7352
+ type AwemeDetail$1 = {
7308
7353
  activity_video_type: number;
7309
7354
  anchors: null;
7310
7355
  authentication_token: string;
7311
- author: Author$1;
7356
+ author: Author$2;
7312
7357
  author_mask_tag: number;
7313
7358
  author_user_id: number;
7314
- aweme_control: AwemeControl;
7359
+ aweme_control: AwemeControl$1;
7315
7360
  aweme_id: string;
7316
- aweme_listen_struct: AwemeListenStruct;
7361
+ aweme_listen_struct: AwemeListenStruct$1;
7317
7362
  aweme_type: number;
7318
7363
  aweme_type_tags: string;
7319
7364
  boost_status: number;
@@ -7326,9 +7371,9 @@ type AwemeDetail = {
7326
7371
  collection_corner_mark: number;
7327
7372
  comment_gid: number;
7328
7373
  comment_list: null;
7329
- comment_permission_info: CommentPermissionInfo;
7374
+ comment_permission_info: CommentPermissionInfo$1;
7330
7375
  commerce_config_data: null;
7331
- component_control: ComponentControl;
7376
+ component_control: ComponentControl$1;
7332
7377
  component_info_v2: string;
7333
7378
  cover_labels: null;
7334
7379
  create_time: number;
@@ -7337,20 +7382,20 @@ type AwemeDetail = {
7337
7382
  disable_relation_bar: number;
7338
7383
  dislike_dimension_list: null;
7339
7384
  dislike_dimension_list_v2: null;
7340
- distribute_circle: DistributeCircle;
7385
+ distribute_circle: DistributeCircle$1;
7341
7386
  duet_aggregate_in_music_tab: boolean;
7342
7387
  duration: number;
7343
7388
  ecom_comment_atmosphere_type: number;
7344
7389
  enable_comment_sticker_rec: boolean;
7345
- entertainment_product_info: EntertainmentProductInfo;
7346
- fall_card_struct: FallCardStruct;
7347
- feed_comment_config: FeedCommentConfig;
7390
+ entertainment_product_info: EntertainmentProductInfo$1;
7391
+ fall_card_struct: FallCardStruct$1;
7392
+ feed_comment_config: FeedCommentConfig$1;
7348
7393
  flash_mob_trends: number;
7349
7394
  friend_interaction: number;
7350
7395
  friend_recommend_info: {
7351
7396
  [key: string]: any;
7352
7397
  };
7353
- game_tag_info: GameTagInfo;
7398
+ game_tag_info: GameTagInfo$1;
7354
7399
  geofencing: string[];
7355
7400
  geofencing_regions: null;
7356
7401
  group_id: string;
@@ -7358,7 +7403,7 @@ type AwemeDetail = {
7358
7403
  [key: string]: any;
7359
7404
  };
7360
7405
  hybrid_label: null;
7361
- image_album_music_info: ImageAlbumMusicInfo;
7406
+ image_album_music_info: ImageAlbumMusicInfo$1;
7362
7407
  image_comment: {
7363
7408
  [key: string]: any;
7364
7409
  };
@@ -7367,7 +7412,7 @@ type AwemeDetail = {
7367
7412
  image_list: null;
7368
7413
  images: null;
7369
7414
  img_bitrate: null;
7370
- impression_data: ImpressionData;
7415
+ impression_data: ImpressionData$1;
7371
7416
  incentive_item_type: number;
7372
7417
  interaction_stickers: null;
7373
7418
  is_24_story: number;
@@ -7381,13 +7426,13 @@ type AwemeDetail = {
7381
7426
  is_top: number;
7382
7427
  is_use_music: boolean;
7383
7428
  item_title: string;
7384
- item_warn_notification: ItemWarnNotification;
7429
+ item_warn_notification: ItemWarnNotification$1;
7385
7430
  label_top_text: null;
7386
7431
  libfinsert_task_id: string;
7387
7432
  long_video: null;
7388
7433
  mark_largely_following: boolean;
7389
7434
  media_type: number;
7390
- music: Music;
7435
+ music: Music$1;
7391
7436
  nickname_position: null;
7392
7437
  origin_comment_ids: null;
7393
7438
  origin_duet_resource_uri: string;
@@ -7396,22 +7441,22 @@ type AwemeDetail = {
7396
7441
  original_images: null;
7397
7442
  packed_clips: null;
7398
7443
  personal_page_botton_diagnose_style: number;
7399
- photo_search_entrance: PhotoSearchEntrance;
7400
- play_progress: PlayProgress;
7444
+ photo_search_entrance: PhotoSearchEntrance$1;
7445
+ play_progress: PlayProgress$1;
7401
7446
  position: null;
7402
7447
  preview_title: string;
7403
7448
  preview_video_status: number;
7404
7449
  promotions: string[];
7405
- publish_plus_alienation: PublishPlusAlienation;
7450
+ publish_plus_alienation: PublishPlusAlienation$1;
7406
7451
  rate: number;
7407
7452
  region: string;
7408
7453
  relation_labels: null;
7409
- risk_infos: RiskInfos;
7454
+ risk_infos: RiskInfos$1;
7410
7455
  seo_info: {
7411
7456
  [key: string]: any;
7412
7457
  };
7413
- series_paid_info: SeriesPaidInfo;
7414
- share_info: AwemeDetailShareInfo;
7458
+ series_paid_info: SeriesPaidInfo$1;
7459
+ share_info: AwemeDetailShareInfo$1;
7415
7460
  share_rec_extra: string;
7416
7461
  share_url: string;
7417
7462
  shoot_way: string;
@@ -7420,36 +7465,36 @@ type AwemeDetail = {
7420
7465
  [key: string]: any;
7421
7466
  };
7422
7467
  social_tag_list: null;
7423
- statistics: Statistics;
7424
- status: Status;
7425
- suggest_words: SuggestWords;
7468
+ statistics: Statistics$1;
7469
+ status: Status$1;
7470
+ suggest_words: SuggestWords$1;
7426
7471
  text_extra: string[];
7427
7472
  uniqid_position: null;
7428
7473
  user_digged: number;
7429
7474
  user_recommend_status: number;
7430
- video: Video$2;
7431
- video_control: VideoControl;
7475
+ video: Video$3;
7476
+ video_control: VideoControl$1;
7432
7477
  video_game_data_channel_config: {
7433
7478
  [key: string]: any;
7434
7479
  };
7435
7480
  video_labels: null;
7436
7481
  video_share_edit_status: number;
7437
- video_tag: VideoTag[];
7482
+ video_tag: VideoTag$1[];
7438
7483
  video_text: string[];
7439
- visual_search_info: VisualSearchInfo;
7484
+ visual_search_info: VisualSearchInfo$1;
7440
7485
  vtag_search: VtagSearch;
7441
- xigua_base_info: XiguaBaseInfo;
7486
+ xigua_base_info: XiguaBaseInfo$1;
7442
7487
  [property: string]: any;
7443
7488
  };
7444
- type Author$1 = {
7489
+ type Author$2 = {
7445
7490
  account_cert_info: string;
7446
- avatar_thumb: AuthorAvatarThumb;
7491
+ avatar_thumb: AuthorAvatarThumb$1;
7447
7492
  awemehts_greet_info: string;
7448
7493
  cf_list: null;
7449
7494
  close_friend_type: number;
7450
7495
  contacts_status: number;
7451
7496
  contrail_list: null;
7452
- cover_url: Coverurl[];
7497
+ cover_url: Coverurl$1[];
7453
7498
  create_time: number;
7454
7499
  custom_verify: string;
7455
7500
  data_label_list: null;
@@ -7476,7 +7521,7 @@ type Author$1 = {
7476
7521
  risk_notice_text: string;
7477
7522
  sec_uid: string;
7478
7523
  secret: number;
7479
- share_info: AuthorShareInfo;
7524
+ share_info: AuthorShareInfo$1;
7480
7525
  short_id: string;
7481
7526
  signature: string;
7482
7527
  signature_extra: null;
@@ -7493,24 +7538,24 @@ type Author$1 = {
7493
7538
  verification_type: number;
7494
7539
  [property: string]: any;
7495
7540
  };
7496
- type AuthorAvatarThumb = {
7541
+ type AuthorAvatarThumb$1 = {
7497
7542
  height: number;
7498
7543
  uri: string;
7499
7544
  url_list: string[];
7500
7545
  width: number;
7501
7546
  [property: string]: any;
7502
7547
  };
7503
- type Coverurl = {
7548
+ type Coverurl$1 = {
7504
7549
  height?: number;
7505
7550
  uri?: string;
7506
7551
  url_list?: string[];
7507
7552
  width?: number;
7508
7553
  [property: string]: any;
7509
7554
  };
7510
- type AuthorShareInfo = {
7555
+ type AuthorShareInfo$1 = {
7511
7556
  share_desc: string;
7512
7557
  share_desc_info: string;
7513
- share_qrcode_url: ShareQrcodeurl;
7558
+ share_qrcode_url: ShareQrcodeurl$1;
7514
7559
  share_title: string;
7515
7560
  share_title_myself: string;
7516
7561
  share_title_other: string;
@@ -7518,25 +7563,25 @@ type AuthorShareInfo = {
7518
7563
  share_weibo_desc: string;
7519
7564
  [property: string]: any;
7520
7565
  };
7521
- type ShareQrcodeurl = {
7566
+ type ShareQrcodeurl$1 = {
7522
7567
  height: number;
7523
7568
  uri: string;
7524
7569
  url_list: string[];
7525
7570
  width: number;
7526
7571
  [property: string]: any;
7527
7572
  };
7528
- type AwemeControl = {
7573
+ type AwemeControl$1 = {
7529
7574
  can_comment: boolean;
7530
7575
  can_forward: boolean;
7531
7576
  can_share: boolean;
7532
7577
  can_show_comment: boolean;
7533
7578
  [property: string]: any;
7534
7579
  };
7535
- type AwemeListenStruct = {
7580
+ type AwemeListenStruct$1 = {
7536
7581
  trace_info: string;
7537
7582
  [property: string]: any;
7538
7583
  };
7539
- type CommentPermissionInfo = {
7584
+ type CommentPermissionInfo$1 = {
7540
7585
  can_comment: boolean;
7541
7586
  comment_permission_status: number;
7542
7587
  item_detail_entry: boolean;
@@ -7544,7 +7589,7 @@ type CommentPermissionInfo = {
7544
7589
  toast_guide: boolean;
7545
7590
  [property: string]: any;
7546
7591
  };
7547
- type ComponentControl = {
7592
+ type ComponentControl$1 = {
7548
7593
  data_source_url: string;
7549
7594
  [property: string]: any;
7550
7595
  };
@@ -7565,45 +7610,45 @@ type Activity$1 = {
7565
7610
  type?: number;
7566
7611
  [property: string]: any;
7567
7612
  };
7568
- type DistributeCircle = {
7613
+ type DistributeCircle$1 = {
7569
7614
  campus_block_interaction: boolean;
7570
7615
  distribute_type: number;
7571
7616
  is_campus: boolean;
7572
7617
  [property: string]: any;
7573
7618
  };
7574
- type EntertainmentProductInfo = {
7575
- market_info: MarketInfo;
7619
+ type EntertainmentProductInfo$1 = {
7620
+ market_info: MarketInfo$1;
7576
7621
  [property: string]: any;
7577
7622
  };
7578
- type MarketInfo = {
7579
- limit_free: LimitFree;
7623
+ type MarketInfo$1 = {
7624
+ limit_free: LimitFree$1;
7580
7625
  [property: string]: any;
7581
7626
  };
7582
- type LimitFree = {
7627
+ type LimitFree$1 = {
7583
7628
  in_free: boolean;
7584
7629
  [property: string]: any;
7585
7630
  };
7586
- type FallCardStruct = {
7631
+ type FallCardStruct$1 = {
7587
7632
  recommend_reason: string;
7588
7633
  recommend_reason_v2: string;
7589
7634
  [property: string]: any;
7590
7635
  };
7591
- type FeedCommentConfig = {
7636
+ type FeedCommentConfig$1 = {
7592
7637
  author_audit_status: number;
7593
7638
  input_config_text: string;
7594
7639
  [property: string]: any;
7595
7640
  };
7596
- type GameTagInfo = {
7641
+ type GameTagInfo$1 = {
7597
7642
  is_game: boolean;
7598
7643
  [property: string]: any;
7599
7644
  };
7600
- type ImageAlbumMusicInfo = {
7645
+ type ImageAlbumMusicInfo$1 = {
7601
7646
  begin_time: number;
7602
7647
  end_time: number;
7603
7648
  volume: number;
7604
7649
  [property: string]: any;
7605
7650
  };
7606
- type ImpressionData = {
7651
+ type ImpressionData$1 = {
7607
7652
  group_id_list_a: string[];
7608
7653
  group_id_list_b: string[];
7609
7654
  group_id_list_c: string[];
@@ -7611,13 +7656,13 @@ type ImpressionData = {
7611
7656
  similar_id_list_b: null;
7612
7657
  [property: string]: any;
7613
7658
  };
7614
- type ItemWarnNotification = {
7659
+ type ItemWarnNotification$1 = {
7615
7660
  content: string;
7616
7661
  show: boolean;
7617
7662
  type: number;
7618
7663
  [property: string]: any;
7619
7664
  };
7620
- type Music = {
7665
+ type Music$1 = {
7621
7666
  album: string;
7622
7667
  artist_user_infos: null;
7623
7668
  artists: string[];
@@ -7626,16 +7671,16 @@ type Music = {
7626
7671
  author_deleted: boolean;
7627
7672
  author_position: null;
7628
7673
  author_status: number;
7629
- avatar_large: AvatarLarge;
7630
- avatar_medium: AvatarMedium;
7631
- avatar_thumb: MusicAvatarThumb;
7674
+ avatar_large: AvatarLarge$1;
7675
+ avatar_medium: AvatarMedium$1;
7676
+ avatar_thumb: MusicAvatarThumb$1;
7632
7677
  binded_challenge_id: number;
7633
7678
  can_background_play: boolean;
7634
7679
  collect_stat: number;
7635
- cover_hd: Coverhd;
7636
- cover_large: CoverLarge;
7680
+ cover_hd: Coverhd$1;
7681
+ cover_large: CoverLarge$1;
7637
7682
  cover_medium: CoverMedium;
7638
- cover_thumb: CoverThumb;
7683
+ cover_thumb: CoverThumb$1;
7639
7684
  dmv_auto_show: boolean;
7640
7685
  dsp_status: number;
7641
7686
  duration: number;
@@ -7666,7 +7711,7 @@ type Music = {
7666
7711
  owner_id: string;
7667
7712
  owner_nickname: string;
7668
7713
  pgc_music_type: number;
7669
- play_url: Playurl;
7714
+ play_url: Playurl$1;
7670
7715
  position: null;
7671
7716
  prevent_download: boolean;
7672
7717
  prevent_item_download_status: number;
@@ -7675,7 +7720,7 @@ type Music = {
7675
7720
  reason_type: number;
7676
7721
  redirect: boolean;
7677
7722
  schema_url: string;
7678
- search_impr: SearchImpr;
7723
+ search_impr: SearchImpr$1;
7679
7724
  sec_uid: string;
7680
7725
  shoot_duration: number;
7681
7726
  source_platform: number;
@@ -7689,35 +7734,35 @@ type Music = {
7689
7734
  video_duration: number;
7690
7735
  [property: string]: any;
7691
7736
  };
7692
- type AvatarLarge = {
7737
+ type AvatarLarge$1 = {
7693
7738
  height: number;
7694
7739
  uri: string;
7695
7740
  url_list: string[];
7696
7741
  width: number;
7697
7742
  [property: string]: any;
7698
7743
  };
7699
- type AvatarMedium = {
7744
+ type AvatarMedium$1 = {
7700
7745
  height: number;
7701
7746
  uri: string;
7702
7747
  url_list: string[];
7703
7748
  width: number;
7704
7749
  [property: string]: any;
7705
7750
  };
7706
- type MusicAvatarThumb = {
7751
+ type MusicAvatarThumb$1 = {
7707
7752
  height: number;
7708
7753
  uri: string;
7709
7754
  url_list: string[];
7710
7755
  width: number;
7711
7756
  [property: string]: any;
7712
7757
  };
7713
- type Coverhd = {
7758
+ type Coverhd$1 = {
7714
7759
  height: number;
7715
7760
  uri: string;
7716
7761
  url_list: string[];
7717
7762
  width: number;
7718
7763
  [property: string]: any;
7719
7764
  };
7720
- type CoverLarge = {
7765
+ type CoverLarge$1 = {
7721
7766
  height: number;
7722
7767
  uri: string;
7723
7768
  url_list: string[];
@@ -7731,14 +7776,14 @@ type CoverMedium = {
7731
7776
  width: number;
7732
7777
  [property: string]: any;
7733
7778
  };
7734
- type CoverThumb = {
7779
+ type CoverThumb$1 = {
7735
7780
  height: number;
7736
7781
  uri: string;
7737
7782
  url_list: string[];
7738
7783
  width: number;
7739
7784
  [property: string]: any;
7740
7785
  };
7741
- type Playurl = {
7786
+ type Playurl$1 = {
7742
7787
  height: number;
7743
7788
  uri: string;
7744
7789
  url_key: string;
@@ -7746,7 +7791,7 @@ type Playurl = {
7746
7791
  width: number;
7747
7792
  [property: string]: any;
7748
7793
  };
7749
- type SearchImpr = {
7794
+ type SearchImpr$1 = {
7750
7795
  entity_id: string;
7751
7796
  [property: string]: any;
7752
7797
  };
@@ -7757,20 +7802,20 @@ type StrongBeaturl = {
7757
7802
  width: number;
7758
7803
  [property: string]: any;
7759
7804
  };
7760
- type PhotoSearchEntrance = {
7805
+ type PhotoSearchEntrance$1 = {
7761
7806
  ecom_type: number;
7762
7807
  [property: string]: any;
7763
7808
  };
7764
- type PlayProgress = {
7809
+ type PlayProgress$1 = {
7765
7810
  last_modified_time: number;
7766
7811
  play_progress: number;
7767
7812
  [property: string]: any;
7768
7813
  };
7769
- type PublishPlusAlienation = {
7814
+ type PublishPlusAlienation$1 = {
7770
7815
  alienation_type: number;
7771
7816
  [property: string]: any;
7772
7817
  };
7773
- type RiskInfos = {
7818
+ type RiskInfos$1 = {
7774
7819
  content: string;
7775
7820
  risk_sink: boolean;
7776
7821
  type: number;
@@ -7778,19 +7823,19 @@ type RiskInfos = {
7778
7823
  warn: boolean;
7779
7824
  [property: string]: any;
7780
7825
  };
7781
- type SeriesPaidInfo = {
7826
+ type SeriesPaidInfo$1 = {
7782
7827
  item_price: number;
7783
7828
  series_paid_status: number;
7784
7829
  [property: string]: any;
7785
7830
  };
7786
- type AwemeDetailShareInfo = {
7831
+ type AwemeDetailShareInfo$1 = {
7787
7832
  share_desc: string;
7788
7833
  share_desc_info: string;
7789
7834
  share_link_desc: string;
7790
7835
  share_url: string;
7791
7836
  [property: string]: any;
7792
7837
  };
7793
- type Statistics = {
7838
+ type Statistics$1 = {
7794
7839
  admire_count: number;
7795
7840
  aweme_id: string;
7796
7841
  collect_count: number;
@@ -7800,7 +7845,7 @@ type Statistics = {
7800
7845
  share_count: number;
7801
7846
  [property: string]: any;
7802
7847
  };
7803
- type Status = {
7848
+ type Status$1 = {
7804
7849
  allow_share: boolean;
7805
7850
  aweme_id: string;
7806
7851
  in_reviewing: boolean;
@@ -7809,31 +7854,31 @@ type Status = {
7809
7854
  listen_video_status: number;
7810
7855
  part_see: number;
7811
7856
  private_status: number;
7812
- review_result: ReviewResult;
7857
+ review_result: ReviewResult$1;
7813
7858
  [property: string]: any;
7814
7859
  };
7815
- type ReviewResult = {
7860
+ type ReviewResult$1 = {
7816
7861
  review_status: number;
7817
7862
  [property: string]: any;
7818
7863
  };
7819
- type SuggestWords = {
7820
- suggest_words: SuggestWord[];
7864
+ type SuggestWords$1 = {
7865
+ suggest_words: SuggestWord$1[];
7821
7866
  [property: string]: any;
7822
7867
  };
7823
- type SuggestWord = {
7868
+ type SuggestWord$1 = {
7824
7869
  hint_text?: string;
7825
7870
  icon_url?: string;
7826
7871
  scene?: string;
7827
- words?: Word[];
7872
+ words?: Word$1[];
7828
7873
  [property: string]: any;
7829
7874
  };
7830
- type Word = {
7875
+ type Word$1 = {
7831
7876
  info?: string;
7832
7877
  word?: string;
7833
7878
  word_id?: string;
7834
7879
  [property: string]: any;
7835
7880
  };
7836
- type Video$2 = {
7881
+ type Video$3 = {
7837
7882
  audio: {
7838
7883
  [key: string]: any;
7839
7884
  };
@@ -7841,7 +7886,7 @@ type Video$2 = {
7841
7886
  bit_rate: BitRate[];
7842
7887
  bit_rate_audio: null;
7843
7888
  cdn_url_expired: number;
7844
- cover: Cover;
7889
+ cover: Cover$1;
7845
7890
  cover_original_scale: CoverOriginalScale;
7846
7891
  download_addr: DownloadAddr;
7847
7892
  download_suffix_logo_addr: DownloadSuffixLogoAddr;
@@ -7855,7 +7900,7 @@ type Video$2 = {
7855
7900
  is_h265: number;
7856
7901
  is_source_HDR: number;
7857
7902
  meta: string;
7858
- origin_cover: OriginCover;
7903
+ origin_cover: OriginCover$1;
7859
7904
  play_addr: VideoPlayAddr;
7860
7905
  play_addr_265: PlayAddr265;
7861
7906
  play_addr_h264: PlayAddrH264;
@@ -7889,7 +7934,7 @@ type BitRatePlayAddr = {
7889
7934
  width: number;
7890
7935
  [property: string]: any;
7891
7936
  };
7892
- type Cover = {
7937
+ type Cover$1 = {
7893
7938
  height: number;
7894
7939
  uri: string;
7895
7940
  url_list: string[];
@@ -7935,7 +7980,7 @@ type GaussianCover = {
7935
7980
  width: number;
7936
7981
  [property: string]: any;
7937
7982
  };
7938
- type OriginCover = {
7983
+ type OriginCover$1 = {
7939
7984
  height: number;
7940
7985
  uri: string;
7941
7986
  url_list: string[];
@@ -7975,7 +8020,7 @@ type PlayAddrH264 = {
7975
8020
  width: number;
7976
8021
  [property: string]: any;
7977
8022
  };
7978
- type VideoControl = {
8023
+ type VideoControl$1 = {
7979
8024
  allow_douplus: boolean;
7980
8025
  allow_download: boolean;
7981
8026
  allow_duet: boolean;
@@ -7987,10 +8032,10 @@ type VideoControl = {
7987
8032
  allow_stitch: boolean;
7988
8033
  disable_record_reason: string;
7989
8034
  download_ignore_visibility: boolean;
7990
- download_info: DownloadInfo;
8035
+ download_info: DownloadInfo$1;
7991
8036
  draft_progress_bar: number;
7992
8037
  duet_ignore_visibility: boolean;
7993
- duet_info: DuetInfo;
8038
+ duet_info: DuetInfo$1;
7994
8039
  prevent_download_type: number;
7995
8040
  share_grayed: boolean;
7996
8041
  share_ignore_visibility: boolean;
@@ -8002,21 +8047,21 @@ type VideoControl = {
8002
8047
  timer_status: number;
8003
8048
  [property: string]: any;
8004
8049
  };
8005
- type DownloadInfo = {
8050
+ type DownloadInfo$1 = {
8006
8051
  level: number;
8007
8052
  [property: string]: any;
8008
8053
  };
8009
- type DuetInfo = {
8054
+ type DuetInfo$1 = {
8010
8055
  level: number;
8011
8056
  [property: string]: any;
8012
8057
  };
8013
- type VideoTag = {
8058
+ type VideoTag$1 = {
8014
8059
  level: number;
8015
8060
  tag_id: number;
8016
8061
  tag_name: string;
8017
8062
  [property: string]: any;
8018
8063
  };
8019
- type VisualSearchInfo = {
8064
+ type VisualSearchInfo$1 = {
8020
8065
  is_ecom_img: boolean;
8021
8066
  is_high_accuracy_ecom: boolean;
8022
8067
  is_high_recall_ecom: boolean;
@@ -8029,14 +8074,14 @@ type VtagSearch = {
8029
8074
  vtag_enable: boolean;
8030
8075
  [property: string]: any;
8031
8076
  };
8032
- type XiguaBaseInfo = {
8077
+ type XiguaBaseInfo$1 = {
8033
8078
  item_id: number;
8034
8079
  star_altar_order_id: number;
8035
8080
  star_altar_type: number;
8036
8081
  status: number;
8037
8082
  [property: string]: any;
8038
8083
  };
8039
- type LogPb$1 = {
8084
+ type LogPb$3 = {
8040
8085
  impr_id: string;
8041
8086
  [property: string]: any;
8042
8087
  };
@@ -8056,7 +8101,7 @@ type DyWorkComments = {
8056
8101
  };
8057
8102
  has_more: number;
8058
8103
  hotsoon_filtered_count: number;
8059
- log_pb: LogPb;
8104
+ log_pb: LogPb$2;
8060
8105
  reply_style: number;
8061
8106
  show_management_entry_point: number;
8062
8107
  status_code: number;
@@ -8358,7 +8403,55 @@ type FastResponseComment = {
8358
8403
  timed_response_words: string[];
8359
8404
  [property: string]: any;
8360
8405
  };
8361
- type LogPb = {
8406
+ type LogPb$2 = {
8407
+ impr_id: string;
8408
+ [property: string]: any;
8409
+ };
8410
+
8411
+ type DyDanmakuList = {
8412
+ danmaku_list: DanmakuList[];
8413
+ end_time: number;
8414
+ extra: DataExtra;
8415
+ log_pb: LogPb$1;
8416
+ start_time: number;
8417
+ status_code: number;
8418
+ total: number;
8419
+ [property: string]: any;
8420
+ };
8421
+ type DanmakuList = {
8422
+ danmaku_id: string;
8423
+ danmaku_logos: null;
8424
+ danmaku_type: number;
8425
+ danmaku_type_bits: number;
8426
+ digg_count: number;
8427
+ digg_type: number;
8428
+ dislike_type: number;
8429
+ extra: DanmakuListExtra;
8430
+ from_copy: boolean;
8431
+ has_emoji: boolean;
8432
+ is_ad: boolean;
8433
+ item_id: string;
8434
+ offset_time: number;
8435
+ score: number;
8436
+ show_copy: boolean;
8437
+ show_digg: boolean;
8438
+ status: number;
8439
+ text: string;
8440
+ user_id: string;
8441
+ [property: string]: any;
8442
+ };
8443
+ type DanmakuListExtra = {
8444
+ big_thumb: null;
8445
+ style_list: null;
8446
+ [property: string]: any;
8447
+ };
8448
+ type DataExtra = {
8449
+ fatal_item_ids: string[];
8450
+ logid: string;
8451
+ now: number;
8452
+ [property: string]: any;
8453
+ };
8454
+ type LogPb$1 = {
8362
8455
  impr_id: string;
8363
8456
  [property: string]: any;
8364
8457
  };
@@ -8841,7 +8934,7 @@ type Dash$1 = {
8841
8934
  duration: number;
8842
8935
  min_buffer_time: number;
8843
8936
  minBufferTime: number;
8844
- video: Video$1[];
8937
+ video: Video$2[];
8845
8938
  [property: string]: any;
8846
8939
  };
8847
8940
  type Audio$1 = {
@@ -8883,7 +8976,7 @@ type Dolby$1 = {
8883
8976
  type: number;
8884
8977
  [property: string]: any;
8885
8978
  };
8886
- type Video$1 = {
8979
+ type Video$2 = {
8887
8980
  backup_url: string[];
8888
8981
  backupUrl: string[];
8889
8982
  bandwidth: number;
@@ -9701,7 +9794,7 @@ type Dash = {
9701
9794
  flac: null;
9702
9795
  min_buffer_time: number;
9703
9796
  minBufferTime: number;
9704
- video: Video[];
9797
+ video: Video$1[];
9705
9798
  [property: string]: any;
9706
9799
  };
9707
9800
  type Audio = {
@@ -9741,7 +9834,7 @@ type Dolby = {
9741
9834
  type: number;
9742
9835
  [property: string]: any;
9743
9836
  };
9744
- type Video = {
9837
+ type Video$1 = {
9745
9838
  backup_url: string[];
9746
9839
  backupUrl: string[];
9747
9840
  bandwidth: number;
@@ -15664,7 +15757,7 @@ type Data$1 = {
15664
15757
  };
15665
15758
  type VisionVideoDetail = {
15666
15759
  __typename: string;
15667
- author: Author;
15760
+ author: Author$1;
15668
15761
  commentLimit: CommentLimit;
15669
15762
  danmakuSwitch: boolean;
15670
15763
  llsid: string;
@@ -15674,7 +15767,7 @@ type VisionVideoDetail = {
15674
15767
  type: number;
15675
15768
  [property: string]: any;
15676
15769
  };
15677
- type Author = {
15770
+ type Author$1 = {
15678
15771
  __typename: string;
15679
15772
  following: boolean;
15680
15773
  headerUrl: string;
@@ -15871,135 +15964,858 @@ type FluffyKvqScore = {
15871
15964
  NRPost: number;
15872
15965
  [property: string]: any;
15873
15966
  };
15874
- type H264PlayInfo = {
15875
- cdnTimeRangeLevel: number;
15967
+ type H264PlayInfo = {
15968
+ cdnTimeRangeLevel: number;
15969
+ [property: string]: any;
15970
+ };
15971
+ type H264VideoFeature = {
15972
+ avgEntropy: number;
15973
+ blockyProbability: number;
15974
+ blurProbability: number;
15975
+ mosScore: number;
15976
+ [property: string]: any;
15977
+ };
15978
+ type Hevc = {
15979
+ adaptationSet: HevcAdaptationSet[];
15980
+ businessType: number;
15981
+ hideAuto: boolean;
15982
+ manualDefaultSelect: boolean;
15983
+ mediaType: number;
15984
+ playInfo: HevcPlayInfo;
15985
+ stereoType: number;
15986
+ version: string;
15987
+ videoFeature: HevcVideoFeature;
15988
+ videoId: string;
15989
+ [property: string]: any;
15990
+ };
15991
+ type HevcAdaptationSet = {
15992
+ duration?: number;
15993
+ id?: number;
15994
+ representation?: StickyRepresentation[];
15995
+ [property: string]: any;
15996
+ };
15997
+ type StickyRepresentation = {
15998
+ agc?: boolean;
15999
+ avgBitrate?: number;
16000
+ backupUrl?: string[];
16001
+ comment?: string;
16002
+ defaultSelect?: boolean;
16003
+ disableAdaptive?: boolean;
16004
+ featureP2sp?: boolean;
16005
+ fileSize?: number;
16006
+ frameRate?: number;
16007
+ hdrType?: number;
16008
+ height?: number;
16009
+ hidden?: boolean;
16010
+ id?: number;
16011
+ kvqScore?: TentacledKvqScore;
16012
+ makeupGain?: number;
16013
+ maxBitrate?: number;
16014
+ mute?: boolean;
16015
+ normalizeGain?: number;
16016
+ oriLoudness?: number;
16017
+ p2spCode?: string;
16018
+ quality?: number;
16019
+ qualityLabel?: string;
16020
+ qualityType?: string;
16021
+ url?: string;
16022
+ width?: number;
16023
+ [property: string]: any;
16024
+ };
16025
+ type TentacledKvqScore = {
16026
+ NR: number;
16027
+ NRPost: number;
16028
+ [property: string]: any;
16029
+ };
16030
+ type HevcPlayInfo = {
16031
+ cdnTimeRangeLevel: number;
16032
+ [property: string]: any;
16033
+ };
16034
+ type HevcVideoFeature = {
16035
+ avgEntropy: number;
16036
+ blockyProbability: number;
16037
+ blurProbability: number;
16038
+ mosScore: number;
16039
+ [property: string]: any;
16040
+ };
16041
+ type Tag = {
16042
+ __typename: string;
16043
+ name: string;
16044
+ type: string;
16045
+ [property: string]: any;
16046
+ };
16047
+
16048
+ type KsWorkComments = {
16049
+ data: Data;
16050
+ [property: string]: any;
16051
+ };
16052
+ type Data = {
16053
+ visionCommentList: VisionCommentList;
16054
+ [property: string]: any;
16055
+ };
16056
+ type VisionCommentList = {
16057
+ __typename: string;
16058
+ commentCount: number;
16059
+ pcursor: string;
16060
+ rootComments: RootComment[];
16061
+ [property: string]: any;
16062
+ };
16063
+ type RootComment = {
16064
+ __typename: string;
16065
+ authorId: string;
16066
+ authorLiked: boolean;
16067
+ authorName: string;
16068
+ commentId: string;
16069
+ content: string;
16070
+ headurl: string;
16071
+ liked: boolean;
16072
+ likedCount: string;
16073
+ realLikedCount: number;
16074
+ status: string;
16075
+ subCommentCount: number | null;
16076
+ subComments: SubComment[];
16077
+ subCommentsPcursor: null | string;
16078
+ timestamp: number;
16079
+ [property: string]: any;
16080
+ };
16081
+ type SubComment = {
16082
+ __typename: string;
16083
+ authorId: string;
16084
+ authorLiked: boolean;
16085
+ authorName: string;
16086
+ commentId: string;
16087
+ content: string;
16088
+ headurl: string;
16089
+ liked: boolean;
16090
+ likedCount: string;
16091
+ realLikedCount: number;
16092
+ replyTo: string;
16093
+ replyToUserName: string;
16094
+ status: string;
16095
+ timestamp: number;
16096
+ [property: string]: any;
16097
+ };
16098
+
16099
+ type DyTextWork = {
16100
+ aweme_detail: AwemeDetail;
16101
+ log_pb: LogPb;
16102
+ status_code: number;
16103
+ [property: string]: any;
16104
+ };
16105
+ type AwemeDetail = {
16106
+ activity_video_type: number;
16107
+ anchors: null;
16108
+ authentication_token: string;
16109
+ author: Author;
16110
+ author_mask_tag: number;
16111
+ author_user_id: number;
16112
+ aweme_acl: Awemeacl;
16113
+ aweme_control: AwemeControl;
16114
+ aweme_id: string;
16115
+ aweme_listen_struct: AwemeListenStruct;
16116
+ aweme_type: number;
16117
+ aweme_type_tags: string;
16118
+ boost_status: number;
16119
+ can_cache_to_local: boolean;
16120
+ caption: string;
16121
+ caption_template_id: number;
16122
+ category_da: number;
16123
+ cf_assets_type: number;
16124
+ cf_recheck_ts: number;
16125
+ challenge_position: null;
16126
+ chapter_list: null;
16127
+ collect_stat: number;
16128
+ collection_corner_mark: number;
16129
+ comment_gid: number;
16130
+ comment_list: null;
16131
+ comment_permission_info: CommentPermissionInfo;
16132
+ commerce_config_data: null;
16133
+ component_control: ComponentControl;
16134
+ component_info_v2: string;
16135
+ cover_labels: null;
16136
+ create_time: number;
16137
+ desc: string;
16138
+ disable_relation_bar: number;
16139
+ dislike_dimension_list: null;
16140
+ dislike_dimension_list_v2: null;
16141
+ distribute_circle: DistributeCircle;
16142
+ douplus_user_type: number;
16143
+ duet_aggregate_in_music_tab: boolean;
16144
+ duration: number;
16145
+ ecom_comment_atmosphere_type: number;
16146
+ enable_comment_sticker_rec: boolean;
16147
+ entertainment_product_info: EntertainmentProductInfo;
16148
+ entertainment_video_paid_way: EntertainmentVideoPaidWay;
16149
+ entertainment_video_type: number;
16150
+ fall_card_struct: FallCardStruct;
16151
+ feed_comment_config: FeedCommentConfig;
16152
+ flash_mob_trends: number;
16153
+ follow_shoot_clip_info: FollowShootClipInfo;
16154
+ friend_recommend_info: FriendRecommendInfo;
16155
+ game_tag_info: GameTagInfo;
16156
+ geofencing: string[];
16157
+ geofencing_regions: null;
16158
+ group_id: string;
16159
+ guide_scene_info: {
16160
+ [key: string]: any;
16161
+ };
16162
+ hybrid_label: null;
16163
+ image_album_music_info: ImageAlbumMusicInfo;
16164
+ image_comment: {
16165
+ [key: string]: any;
16166
+ };
16167
+ image_crop_ctrl: number;
16168
+ image_infos: null;
16169
+ image_item_quality_level: number;
16170
+ image_list: null;
16171
+ images: Image[];
16172
+ img_bitrate: string[];
16173
+ impression_data: ImpressionData;
16174
+ incentive_item_type: number;
16175
+ interaction_stickers: null;
16176
+ is_24_story: number;
16177
+ is_25_story: number;
16178
+ is_ads: boolean;
16179
+ is_collects_selected: number;
16180
+ is_duet_sing: boolean;
16181
+ is_from_ad_auth: boolean;
16182
+ is_image_beat: boolean;
16183
+ is_life_item: boolean;
16184
+ is_moment_history: number;
16185
+ is_moment_story: number;
16186
+ is_multi_content: number;
16187
+ is_new_text_mode: number;
16188
+ is_share_post: boolean;
16189
+ is_story: number;
16190
+ is_top: number;
16191
+ is_use_music: boolean;
16192
+ item_title: string;
16193
+ item_warn_notification: ItemWarnNotification;
16194
+ label_top_text: null;
16195
+ libfinsert_task_id: string;
16196
+ long_video: null;
16197
+ mark_largely_following: boolean;
16198
+ media_type: number;
16199
+ music: Music;
16200
+ nickname_position: null;
16201
+ origin_comment_ids: null;
16202
+ origin_duet_resource_uri: string;
16203
+ origin_text_extra: string[];
16204
+ original: number;
16205
+ original_images: null;
16206
+ packed_clips: null;
16207
+ personal_page_botton_diagnose_style: number;
16208
+ photo_search_entrance: PhotoSearchEntrance;
16209
+ play_progress: PlayProgress;
16210
+ position: null;
16211
+ preview_title: string;
16212
+ preview_video_status: number;
16213
+ promotions: string[];
16214
+ publish_plus_alienation: PublishPlusAlienation;
16215
+ rate: number;
16216
+ region: string;
16217
+ relation_labels: null;
16218
+ risk_infos: RiskInfos;
16219
+ select_anchor_expanded_content: number;
16220
+ seo_info: {
16221
+ [key: string]: any;
16222
+ };
16223
+ series_basic_info: {
16224
+ [key: string]: any;
16225
+ };
16226
+ series_paid_info: SeriesPaidInfo;
16227
+ share_info: AwemeDetailShareInfo;
16228
+ share_rec_extra: string;
16229
+ share_url: string;
16230
+ shoot_way: string;
16231
+ should_open_ad_report: boolean;
16232
+ show_follow_button: {
16233
+ [key: string]: any;
16234
+ };
16235
+ social_tag_list: null;
16236
+ statistics: Statistics;
16237
+ status: Status;
16238
+ suggest_words: SuggestWords;
16239
+ text_extra: TextExtra[];
16240
+ trends_event_track: string;
16241
+ uniqid_position: null;
16242
+ user_digged: number;
16243
+ user_recommend_status: number;
16244
+ video: Video;
16245
+ video_control: VideoControl;
16246
+ video_game_data_channel_config: {
16247
+ [key: string]: any;
16248
+ };
16249
+ video_labels: null;
16250
+ video_share_edit_status: number;
16251
+ video_tag: VideoTag[];
16252
+ video_text: string[];
16253
+ visual_search_info: VisualSearchInfo;
16254
+ xigua_base_info: XiguaBaseInfo;
16255
+ [property: string]: any;
16256
+ };
16257
+ type Author = {
16258
+ avatar_thumb: AuthorAvatarThumb;
16259
+ awemehts_greet_info: string;
16260
+ cf_list: null;
16261
+ close_friend_type: number;
16262
+ contacts_status: number;
16263
+ contrail_list: null;
16264
+ cover_url: Coverurl[];
16265
+ create_time: number;
16266
+ custom_verify: string;
16267
+ data_label_list: null;
16268
+ endorsement_info_list: null;
16269
+ enterprise_verify_reason: string;
16270
+ favoriting_count: number;
16271
+ follow_status: number;
16272
+ follower_count: number;
16273
+ follower_list_secondary_information_struct: null;
16274
+ follower_status: number;
16275
+ following_count: number;
16276
+ im_role_ids: null;
16277
+ is_ad_fake: boolean;
16278
+ is_blocked_v2: boolean;
16279
+ is_blocking_v2: boolean;
16280
+ is_cf: number;
16281
+ live_high_value: number;
16282
+ mate_add_permission: number;
16283
+ max_follower_count: number;
16284
+ nickname: string;
16285
+ offline_info_list: null;
16286
+ personal_tag_list: null;
16287
+ prevent_download: boolean;
16288
+ risk_notice_text: string;
16289
+ sec_uid: string;
16290
+ secret: number;
16291
+ share_info: AuthorShareInfo;
16292
+ short_id: string;
16293
+ signature: string;
16294
+ signature_extra: null;
16295
+ special_follow_status: number;
16296
+ special_people_labels: null;
16297
+ status: number;
16298
+ story_interactive: number;
16299
+ story_ring: StoryRing;
16300
+ story_ttl: number;
16301
+ text_extra: null;
16302
+ total_favorited: number;
16303
+ uid: string;
16304
+ unique_id: string;
16305
+ user_age: number;
16306
+ user_canceled: boolean;
16307
+ user_permissions: null;
16308
+ verification_type: number;
16309
+ [property: string]: any;
16310
+ };
16311
+ type AuthorAvatarThumb = {
16312
+ height: number;
16313
+ uri: string;
16314
+ url_list: string[];
16315
+ width: number;
16316
+ [property: string]: any;
16317
+ };
16318
+ type Coverurl = {
16319
+ height?: number;
16320
+ uri?: string;
16321
+ url_list?: string[];
16322
+ width?: number;
16323
+ [property: string]: any;
16324
+ };
16325
+ type AuthorShareInfo = {
16326
+ share_desc: string;
16327
+ share_desc_info: string;
16328
+ share_qrcode_url: ShareQrcodeurl;
16329
+ share_title: string;
16330
+ share_title_myself: string;
16331
+ share_title_other: string;
16332
+ share_url: string;
16333
+ share_weibo_desc: string;
16334
+ [property: string]: any;
16335
+ };
16336
+ type ShareQrcodeurl = {
16337
+ height: number;
16338
+ uri: string;
16339
+ url_list: string[];
16340
+ width: number;
16341
+ [property: string]: any;
16342
+ };
16343
+ type StoryRing = {
16344
+ story_rings: string[];
16345
+ version: number;
16346
+ [property: string]: any;
16347
+ };
16348
+ type Awemeacl = {
16349
+ download_mask_panel: DownloadMaskPanel;
16350
+ [property: string]: any;
16351
+ };
16352
+ type DownloadMaskPanel = {
16353
+ code: number;
16354
+ show_type: number;
16355
+ [property: string]: any;
16356
+ };
16357
+ type AwemeControl = {
16358
+ can_comment: boolean;
16359
+ can_forward: boolean;
16360
+ can_share: boolean;
16361
+ can_show_comment: boolean;
16362
+ [property: string]: any;
16363
+ };
16364
+ type AwemeListenStruct = {
16365
+ trace_info: string;
16366
+ [property: string]: any;
16367
+ };
16368
+ type CommentPermissionInfo = {
16369
+ can_comment: boolean;
16370
+ comment_permission_status: number;
16371
+ item_detail_entry: boolean;
16372
+ press_entry: boolean;
16373
+ toast_guide: boolean;
16374
+ [property: string]: any;
16375
+ };
16376
+ type ComponentControl = {
16377
+ data_source_url: string;
16378
+ [property: string]: any;
16379
+ };
16380
+ type DistributeCircle = {
16381
+ campus_block_interaction: boolean;
16382
+ distribute_type: number;
16383
+ is_campus: boolean;
16384
+ [property: string]: any;
16385
+ };
16386
+ type EntertainmentProductInfo = {
16387
+ market_info: MarketInfo;
16388
+ [property: string]: any;
16389
+ };
16390
+ type MarketInfo = {
16391
+ limit_free: LimitFree;
16392
+ [property: string]: any;
16393
+ };
16394
+ type LimitFree = {
16395
+ in_free: boolean;
16396
+ [property: string]: any;
16397
+ };
16398
+ type EntertainmentVideoPaidWay = {
16399
+ enable_use_new_ent_data: boolean;
16400
+ paid_type: number;
16401
+ paid_ways: string[];
16402
+ [property: string]: any;
16403
+ };
16404
+ type FallCardStruct = {
16405
+ recommend_reason_v2: string;
16406
+ [property: string]: any;
16407
+ };
16408
+ type FeedCommentConfig = {
16409
+ author_audit_status: number;
16410
+ common_flags: string;
16411
+ input_config_text: string;
16412
+ [property: string]: any;
16413
+ };
16414
+ type FollowShootClipInfo = {
16415
+ clip_from_platform: number;
16416
+ clip_video_all: number;
16417
+ origin_clip_id: number;
16418
+ [property: string]: any;
16419
+ };
16420
+ type FriendRecommendInfo = {
16421
+ disable_friend_recommend_guide_label: boolean;
16422
+ friend_recommend_source: number;
16423
+ [property: string]: any;
16424
+ };
16425
+ type GameTagInfo = {
16426
+ is_game: boolean;
16427
+ [property: string]: any;
16428
+ };
16429
+ type ImageAlbumMusicInfo = {
16430
+ begin_time: number;
16431
+ end_time: number;
16432
+ volume: number;
16433
+ [property: string]: any;
16434
+ };
16435
+ type Image = {
16436
+ download_url_list?: string[];
16437
+ height?: number;
16438
+ is_new_text_mode?: number;
16439
+ uri?: string;
16440
+ url_list?: string[];
16441
+ width?: number;
16442
+ [property: string]: any;
16443
+ };
16444
+ type ImpressionData = {
16445
+ group_id_list_a: string[];
16446
+ group_id_list_b: string[];
16447
+ group_id_list_c: string[];
16448
+ group_id_list_d: string[];
16449
+ similar_id_list_a: null;
16450
+ similar_id_list_b: null;
16451
+ [property: string]: any;
16452
+ };
16453
+ type ItemWarnNotification = {
16454
+ content: string;
16455
+ show: boolean;
16456
+ type: number;
16457
+ [property: string]: any;
16458
+ };
16459
+ type Music = {
16460
+ album: string;
16461
+ artist_user_infos: null;
16462
+ artists: string[];
16463
+ audition_duration: number;
16464
+ author: string;
16465
+ author_deleted: boolean;
16466
+ author_position: null;
16467
+ author_status: number;
16468
+ avatar_large: AvatarLarge;
16469
+ avatar_medium: AvatarMedium;
16470
+ avatar_thumb: MusicAvatarThumb;
16471
+ binded_challenge_id: number;
16472
+ can_background_play: boolean;
16473
+ collect_stat: number;
16474
+ cover_hd: Coverhd;
16475
+ cover_large: CoverLarge;
16476
+ cover_medium: MusicCoverMedium;
16477
+ cover_thumb: CoverThumb;
16478
+ dmv_auto_show: boolean;
16479
+ dsp_status: number;
16480
+ duration: number;
16481
+ end_time: number;
16482
+ external_song_info: string[];
16483
+ extra: string;
16484
+ id: number;
16485
+ id_str: string;
16486
+ is_audio_url_with_cookie: boolean;
16487
+ is_commerce_music: boolean;
16488
+ is_del_video: boolean;
16489
+ is_matched_metadata: boolean;
16490
+ is_original: boolean;
16491
+ is_original_sound: boolean;
16492
+ is_pgc: boolean;
16493
+ is_restricted: boolean;
16494
+ is_video_self_see: boolean;
16495
+ lyric_short_position: null;
16496
+ matched_pgc_sound: MatchedPgcSound;
16497
+ mid: string;
16498
+ music_chart_ranks: null;
16499
+ music_collect_count: number;
16500
+ music_cover_atmosphere_color_value: string;
16501
+ music_status: number;
16502
+ musician_user_infos: null;
16503
+ mute_share: boolean;
16504
+ offline_desc: string;
16505
+ owner_handle: string;
16506
+ owner_id: string;
16507
+ owner_nickname: string;
16508
+ pgc_music_type: number;
16509
+ play_url: Playurl;
16510
+ position: null;
16511
+ prevent_download: boolean;
16512
+ prevent_item_download_status: number;
16513
+ preview_end_time: number;
16514
+ preview_start_time: number;
16515
+ reason_type: number;
16516
+ redirect: boolean;
16517
+ schema_url: string;
16518
+ search_impr: SearchImpr;
16519
+ sec_uid: string;
16520
+ shoot_duration: number;
16521
+ show_origin_clip: boolean;
16522
+ song: Song;
16523
+ source_platform: number;
16524
+ start_time: number;
16525
+ status: number;
16526
+ tag_list: null;
16527
+ title: string;
16528
+ unshelve_countries: null;
16529
+ user_count: number;
16530
+ video_duration: number;
16531
+ [property: string]: any;
16532
+ };
16533
+ type AvatarLarge = {
16534
+ height: number;
16535
+ uri: string;
16536
+ url_list: string[];
16537
+ width: number;
16538
+ [property: string]: any;
16539
+ };
16540
+ type AvatarMedium = {
16541
+ height: number;
16542
+ uri: string;
16543
+ url_list: string[];
16544
+ width: number;
16545
+ [property: string]: any;
16546
+ };
16547
+ type MusicAvatarThumb = {
16548
+ height: number;
16549
+ uri: string;
16550
+ url_list: string[];
16551
+ width: number;
16552
+ [property: string]: any;
16553
+ };
16554
+ type Coverhd = {
16555
+ height: number;
16556
+ uri: string;
16557
+ url_list: string[];
16558
+ width: number;
16559
+ [property: string]: any;
16560
+ };
16561
+ type CoverLarge = {
16562
+ height: number;
16563
+ uri: string;
16564
+ url_list: string[];
16565
+ width: number;
16566
+ [property: string]: any;
16567
+ };
16568
+ type MusicCoverMedium = {
16569
+ height: number;
16570
+ uri: string;
16571
+ url_list: string[];
16572
+ width: number;
16573
+ [property: string]: any;
16574
+ };
16575
+ type CoverThumb = {
16576
+ height: number;
16577
+ uri: string;
16578
+ url_list: string[];
16579
+ width: number;
16580
+ [property: string]: any;
16581
+ };
16582
+ type MatchedPgcSound = {
16583
+ author: string;
16584
+ cover_medium: MatchedPgcSoundCoverMedium;
16585
+ mixed_author: string;
16586
+ mixed_title: string;
16587
+ title: string;
16588
+ [property: string]: any;
16589
+ };
16590
+ type MatchedPgcSoundCoverMedium = {
16591
+ height: number;
16592
+ uri: string;
16593
+ url_list: string[];
16594
+ width: number;
16595
+ [property: string]: any;
16596
+ };
16597
+ type Playurl = {
16598
+ height: number;
16599
+ uri: string;
16600
+ url_key: string;
16601
+ url_list: string[];
16602
+ width: number;
16603
+ [property: string]: any;
16604
+ };
16605
+ type SearchImpr = {
16606
+ entity_id: string;
16607
+ [property: string]: any;
16608
+ };
16609
+ type Song = {
16610
+ artists: null;
16611
+ id: number;
16612
+ id_str: string;
16613
+ [property: string]: any;
16614
+ };
16615
+ type PhotoSearchEntrance = {
16616
+ ecom_type: number;
16617
+ [property: string]: any;
16618
+ };
16619
+ type PlayProgress = {
16620
+ last_modified_time: number;
16621
+ play_progress: number;
16622
+ [property: string]: any;
16623
+ };
16624
+ type PublishPlusAlienation = {
16625
+ alienation_type: number;
16626
+ [property: string]: any;
16627
+ };
16628
+ type RiskInfos = {
16629
+ content: string;
16630
+ risk_sink: boolean;
16631
+ type: number;
16632
+ vote: boolean;
16633
+ warn: boolean;
16634
+ [property: string]: any;
16635
+ };
16636
+ type SeriesPaidInfo = {
16637
+ item_price: number;
16638
+ series_paid_status: number;
16639
+ [property: string]: any;
16640
+ };
16641
+ type AwemeDetailShareInfo = {
16642
+ share_desc: string;
16643
+ share_desc_info: string;
16644
+ share_link_desc: string;
16645
+ share_url: string;
16646
+ [property: string]: any;
16647
+ };
16648
+ type Statistics = {
16649
+ admire_count: number;
16650
+ aweme_id: string;
16651
+ collect_count: number;
16652
+ comment_count: number;
16653
+ digg_count: number;
16654
+ play_count: number;
16655
+ recommend_count: number;
16656
+ share_count: number;
16657
+ [property: string]: any;
16658
+ };
16659
+ type Status = {
16660
+ allow_friend_recommend: boolean;
16661
+ allow_friend_recommend_guide: boolean;
16662
+ allow_self_recommend_to_friend: boolean;
16663
+ allow_share: boolean;
16664
+ aweme_id: string;
16665
+ enable_soft_delete: number;
16666
+ in_reviewing: boolean;
16667
+ is_delete: boolean;
16668
+ is_prohibited: boolean;
16669
+ listen_video_status: number;
16670
+ not_allow_soft_del_reason: string;
16671
+ part_see: number;
16672
+ private_status: number;
16673
+ review_result: ReviewResult;
16674
+ [property: string]: any;
16675
+ };
16676
+ type ReviewResult = {
16677
+ review_status: number;
16678
+ [property: string]: any;
16679
+ };
16680
+ type SuggestWords = {
16681
+ suggest_words: SuggestWord[];
16682
+ [property: string]: any;
16683
+ };
16684
+ type SuggestWord = {
16685
+ extra_info?: string;
16686
+ hint_text?: string;
16687
+ icon_url?: string;
16688
+ scene?: string;
16689
+ words?: Word[];
16690
+ [property: string]: any;
16691
+ };
16692
+ type Word = {
16693
+ info: string;
16694
+ word: string;
16695
+ word_id: string;
16696
+ [property: string]: any;
16697
+ };
16698
+ type TextExtra = {
16699
+ caption_end: number;
16700
+ caption_start: number;
16701
+ end: number;
16702
+ hashtag_id?: string;
16703
+ hashtag_name?: string;
16704
+ is_commerce?: boolean;
16705
+ start: number;
16706
+ type: number;
15876
16707
  [property: string]: any;
15877
16708
  };
15878
- type H264VideoFeature = {
15879
- avgEntropy: number;
15880
- blockyProbability: number;
15881
- blurProbability: number;
15882
- mosScore: number;
16709
+ type Video = {
16710
+ audio: {
16711
+ [key: string]: any;
16712
+ };
16713
+ big_thumbs: null;
16714
+ bit_rate_audio: null;
16715
+ cover: Cover;
16716
+ duration: number;
16717
+ has_watermark: boolean;
16718
+ height: number;
16719
+ is_h265: number;
16720
+ meta: string;
16721
+ origin_cover: OriginCover;
16722
+ play_addr: PlayAddr;
16723
+ ratio: string;
16724
+ width: number;
15883
16725
  [property: string]: any;
15884
16726
  };
15885
- type Hevc = {
15886
- adaptationSet: HevcAdaptationSet[];
15887
- businessType: number;
15888
- hideAuto: boolean;
15889
- manualDefaultSelect: boolean;
15890
- mediaType: number;
15891
- playInfo: HevcPlayInfo;
15892
- stereoType: number;
15893
- version: string;
15894
- videoFeature: HevcVideoFeature;
15895
- videoId: string;
16727
+ type Cover = {
16728
+ height: number;
16729
+ uri: string;
16730
+ url_list: string[];
16731
+ width: number;
15896
16732
  [property: string]: any;
15897
16733
  };
15898
- type HevcAdaptationSet = {
15899
- duration?: number;
15900
- id?: number;
15901
- representation?: StickyRepresentation[];
16734
+ type OriginCover = {
16735
+ height: number;
16736
+ uri: string;
16737
+ url_list: string[];
16738
+ width: number;
15902
16739
  [property: string]: any;
15903
16740
  };
15904
- type StickyRepresentation = {
15905
- agc?: boolean;
15906
- avgBitrate?: number;
15907
- backupUrl?: string[];
15908
- comment?: string;
15909
- defaultSelect?: boolean;
15910
- disableAdaptive?: boolean;
15911
- featureP2sp?: boolean;
15912
- fileSize?: number;
15913
- frameRate?: number;
15914
- hdrType?: number;
15915
- height?: number;
15916
- hidden?: boolean;
15917
- id?: number;
15918
- kvqScore?: TentacledKvqScore;
15919
- makeupGain?: number;
15920
- maxBitrate?: number;
15921
- mute?: boolean;
15922
- normalizeGain?: number;
15923
- oriLoudness?: number;
15924
- p2spCode?: string;
15925
- quality?: number;
15926
- qualityLabel?: string;
15927
- qualityType?: string;
15928
- url?: string;
15929
- width?: number;
16741
+ type PlayAddr = {
16742
+ height: number;
16743
+ uri: string;
16744
+ url_key: string;
16745
+ url_list: string[];
16746
+ width: number;
15930
16747
  [property: string]: any;
15931
16748
  };
15932
- type TentacledKvqScore = {
15933
- NR: number;
15934
- NRPost: number;
16749
+ type VideoControl = {
16750
+ allow_douplus: boolean;
16751
+ allow_download: boolean;
16752
+ allow_duet: boolean;
16753
+ allow_dynamic_wallpaper: boolean;
16754
+ allow_music: boolean;
16755
+ allow_react: boolean;
16756
+ allow_record: boolean;
16757
+ allow_share: boolean;
16758
+ allow_stitch: boolean;
16759
+ disable_record_reason: string;
16760
+ download_ignore_visibility: boolean;
16761
+ download_info: DownloadInfo;
16762
+ draft_progress_bar: number;
16763
+ duet_ignore_visibility: boolean;
16764
+ duet_info: DuetInfo;
16765
+ prevent_download_type: number;
16766
+ share_grayed: boolean;
16767
+ share_ignore_visibility: boolean;
16768
+ share_type: number;
16769
+ show_progress_bar: number;
16770
+ timer_info: {
16771
+ [key: string]: any;
16772
+ };
16773
+ timer_status: number;
15935
16774
  [property: string]: any;
15936
16775
  };
15937
- type HevcPlayInfo = {
15938
- cdnTimeRangeLevel: number;
16776
+ type DownloadInfo = {
16777
+ fail_info: DownloadInfoFailInfo;
16778
+ level: number;
15939
16779
  [property: string]: any;
15940
16780
  };
15941
- type HevcVideoFeature = {
15942
- avgEntropy: number;
15943
- blockyProbability: number;
15944
- blurProbability: number;
15945
- mosScore: number;
16781
+ type DownloadInfoFailInfo = {
16782
+ code: number;
16783
+ msg: string;
16784
+ reason: string;
15946
16785
  [property: string]: any;
15947
16786
  };
15948
- type Tag = {
15949
- __typename: string;
15950
- name: string;
15951
- type: string;
16787
+ type DuetInfo = {
16788
+ fail_info: DuetInfoFailInfo;
16789
+ level: number;
15952
16790
  [property: string]: any;
15953
16791
  };
15954
-
15955
- type KsWorkComments = {
15956
- data: Data;
16792
+ type DuetInfoFailInfo = {
16793
+ code: number;
16794
+ reason: string;
15957
16795
  [property: string]: any;
15958
16796
  };
15959
- type Data = {
15960
- visionCommentList: VisionCommentList;
16797
+ type VideoTag = {
16798
+ level: number;
16799
+ tag_id: number;
16800
+ tag_name: string;
15961
16801
  [property: string]: any;
15962
16802
  };
15963
- type VisionCommentList = {
15964
- __typename: string;
15965
- commentCount: number;
15966
- pcursor: string;
15967
- rootComments: RootComment[];
16803
+ type VisualSearchInfo = {
16804
+ is_ecom_img: boolean;
16805
+ is_high_accuracy_ecom: boolean;
16806
+ is_high_recall_ecom: boolean;
16807
+ is_show_img_entrance: boolean;
15968
16808
  [property: string]: any;
15969
16809
  };
15970
- type RootComment = {
15971
- __typename: string;
15972
- authorId: string;
15973
- authorLiked: boolean;
15974
- authorName: string;
15975
- commentId: string;
15976
- content: string;
15977
- headurl: string;
15978
- liked: boolean;
15979
- likedCount: string;
15980
- realLikedCount: number;
15981
- status: string;
15982
- subCommentCount: number | null;
15983
- subComments: SubComment[];
15984
- subCommentsPcursor: null | string;
15985
- timestamp: number;
16810
+ type XiguaBaseInfo = {
16811
+ item_id: number;
16812
+ star_altar_order_id: number;
16813
+ star_altar_type: number;
16814
+ status: number;
15986
16815
  [property: string]: any;
15987
16816
  };
15988
- type SubComment = {
15989
- __typename: string;
15990
- authorId: string;
15991
- authorLiked: boolean;
15992
- authorName: string;
15993
- commentId: string;
15994
- content: string;
15995
- headurl: string;
15996
- liked: boolean;
15997
- likedCount: string;
15998
- realLikedCount: number;
15999
- replyTo: string;
16000
- replyToUserName: string;
16001
- status: string;
16002
- timestamp: number;
16817
+ type LogPb = {
16818
+ impr_id: string;
16003
16819
  [property: string]: any;
16004
16820
  };
16005
16821
 
@@ -16098,6 +16914,10 @@ interface BilibiliDataOptionsMap {
16098
16914
  };
16099
16915
  }
16100
16916
  interface DouyinDataOptionsMap {
16917
+ 文字作品数据: {
16918
+ opt: DouyinMethodOptionsMap['WorkParams'];
16919
+ data: DyTextWork;
16920
+ };
16101
16921
  聚合解析: {
16102
16922
  opt: DouyinMethodOptionsMap['WorkParams'];
16103
16923
  data: DyVideoWork | DyImageAlbumWork | DySlidesWork;
@@ -16142,6 +16962,10 @@ interface DouyinDataOptionsMap {
16142
16962
  opt: DouyinMethodOptionsMap['EmojiProParams'];
16143
16963
  data: DyEmojiProList;
16144
16964
  };
16965
+ 弹幕数据: {
16966
+ opt: DouyinMethodOptionsMap['DanmakuParams'];
16967
+ data: DyDanmakuList;
16968
+ };
16145
16969
  音乐数据: {
16146
16970
  opt: DouyinMethodOptionsMap['MusicParams'];
16147
16971
  data: DyMusicWork;
@@ -16236,7 +17060,7 @@ type ApiResponse<T = any> = SuccessResponse<T> | ErrorResponse;
16236
17060
  * @returns 验证后的参数,符合原始API期望的类型
16237
17061
  */
16238
17062
  declare const validateDouyinParams: <T extends DouyinMethodType>(methodType: T, params: unknown) => {
16239
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
17063
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
16240
17064
  aweme_id: string;
16241
17065
  } | {
16242
17066
  methodType: "\u8BC4\u8BBA\u6570\u636E";
@@ -16267,6 +17091,12 @@ declare const validateDouyinParams: <T extends DouyinMethodType>(methodType: T,
16267
17091
  comment_id: string;
16268
17092
  number?: number;
16269
17093
  cursor?: number;
17094
+ } | {
17095
+ methodType: "\u5F39\u5E55\u6570\u636E";
17096
+ aweme_id: string;
17097
+ start_time?: number;
17098
+ end_time?: number;
17099
+ duration: number;
16270
17100
  };
16271
17101
  /**
16272
17102
  * 验证哔哩哔哩参数
@@ -16400,14 +17230,22 @@ declare const createAmagiClient: (options?: Options) => {
16400
17230
  douyin: {
16401
17231
  /** 绑定了cookie和请求配置的抖音API对象,调用时不需要传递cookie */
16402
17232
  api: {
17233
+ getTextWorkInfo: <M extends TypeMode>(options: Omit<{
17234
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
17235
+ aweme_id: string;
17236
+ }, "methodType"> & {
17237
+ typeMode?: TypeMode;
17238
+ } & {
17239
+ typeMode?: M | undefined;
17240
+ }) => Promise<ApiResponse<ConditionalReturnType<DyTextWork, M>>>;
16403
17241
  getWorkInfo: <M extends TypeMode>(options: Omit<{
16404
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
17242
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
16405
17243
  aweme_id: string;
16406
17244
  }, "methodType"> & {
16407
17245
  typeMode?: TypeMode;
16408
17246
  } & {
16409
17247
  typeMode?: M | undefined;
16410
- }) => Promise<ApiResponse<ConditionalReturnType<DyVideoWork | DyImageAlbumWork | DySlidesWork, M>>>;
17248
+ }) => Promise<ApiResponse<ConditionalReturnType<DyImageAlbumWork | DySlidesWork | DyVideoWork, M>>>;
16411
17249
  getVideoWorkInfo: <M extends TypeMode>(options: Omit<{
16412
17250
  methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E";
16413
17251
  aweme_id: string;
@@ -16519,6 +17357,17 @@ declare const createAmagiClient: (options?: Options) => {
16519
17357
  } & {
16520
17358
  typeMode?: M | undefined;
16521
17359
  }) => Promise<ApiResponse<ConditionalReturnType<DyUserLiveVideos, M>>>;
17360
+ getDanmaku: <M extends TypeMode>(options: Omit<{
17361
+ methodType: "\u5F39\u5E55\u6570\u636E";
17362
+ aweme_id: string;
17363
+ start_time?: number;
17364
+ end_time?: number;
17365
+ duration: number;
17366
+ }, "methodType"> & {
17367
+ typeMode?: TypeMode;
17368
+ } & {
17369
+ typeMode?: M | undefined;
17370
+ }) => Promise<ApiResponse<ConditionalReturnType<DyDanmakuList, M>>>;
16522
17371
  };
16523
17372
  sign: typeof douyinSign;
16524
17373
  douyinApiUrls: typeof douyinApiUrls;
@@ -17519,6 +18368,20 @@ declare const bilibiliUtils: bilibiliUtilsModel;
17519
18368
  * 每个方法都接受参数和 Cookie,返回 Promise,解析为统一格式的API响应。
17520
18369
  */
17521
18370
  declare const douyin: {
18371
+ /**
18372
+ * 获取文字作品数据
18373
+ * @param options 请求参数,包含 aweme_id 和可选的 typeMode
18374
+ * @param cookie 有效的用户 Cookie
18375
+ * @returns 统一格式的API响应,包含文字作品详细信息
18376
+ */
18377
+ getTextWorkInfo: <M extends TypeMode>(options: Omit<{
18378
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
18379
+ aweme_id: string;
18380
+ }, "methodType"> & {
18381
+ typeMode?: TypeMode;
18382
+ } & {
18383
+ typeMode?: M | undefined;
18384
+ }, cookie: string, requestConfig?: RequestConfig) => Promise<ApiResponse<ConditionalReturnType<DyTextWork, M>>>;
17522
18385
  /**
17523
18386
  * 聚合解析 (视频/图集/合辑)
17524
18387
  * @param options 请求参数,包含 aweme_id 和可选的 typeMode
@@ -17526,13 +18389,13 @@ declare const douyin: {
17526
18389
  * @returns 统一格式的API响应,包含视频、图集或合辑数据
17527
18390
  */
17528
18391
  getWorkInfo: <M extends TypeMode>(options: Omit<{
17529
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
18392
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
17530
18393
  aweme_id: string;
17531
18394
  }, "methodType"> & {
17532
18395
  typeMode?: TypeMode;
17533
18396
  } & {
17534
18397
  typeMode?: M | undefined;
17535
- }, cookie: string, requestConfig?: RequestConfig) => Promise<ApiResponse<ConditionalReturnType<DyVideoWork | DyImageAlbumWork | DySlidesWork, M>>>;
18398
+ }, cookie: string, requestConfig?: RequestConfig) => Promise<ApiResponse<ConditionalReturnType<DyImageAlbumWork | DySlidesWork | DyVideoWork, M>>>;
17536
18399
  /**
17537
18400
  * 获取视频作品数据
17538
18401
  * @param options 请求参数,包含 aweme_id 和可选的 typeMode
@@ -17722,6 +18585,22 @@ declare const douyin: {
17722
18585
  } & {
17723
18586
  typeMode?: M | undefined;
17724
18587
  }, cookie: string, requestConfig?: RequestConfig) => Promise<ApiResponse<ConditionalReturnType<DyUserLiveVideos, M>>>;
18588
+ /**
18589
+ * 获取弹幕数据
18590
+ * @param options 请求参数,包含 aweme_id, 可选的 start_time, end_time, duration 和 typeMode
18591
+ * @returns 统一格式的API响应,包含弹幕数据
18592
+ */
18593
+ getDanmaku: <M extends TypeMode>(options: Omit<{
18594
+ methodType: "\u5F39\u5E55\u6570\u636E";
18595
+ aweme_id: string;
18596
+ start_time?: number;
18597
+ end_time?: number;
18598
+ duration: number;
18599
+ }, "methodType"> & {
18600
+ typeMode?: TypeMode;
18601
+ } & {
18602
+ typeMode?: M | undefined;
18603
+ }, cookie: string, requestConfig?: RequestConfig) => Promise<ApiResponse<ConditionalReturnType<DyDanmakuList, M>>>;
17725
18604
  };
17726
18605
  /**
17727
18606
  * 创建绑定了cookie的抖音API对象
@@ -17729,19 +18608,32 @@ declare const douyin: {
17729
18608
  * @returns 绑定了cookie的抖音API对象,调用时不需要再传递cookie
17730
18609
  */
17731
18610
  declare const createBoundDouyinApi: (cookie: string, requestConfig: RequestConfig) => {
18611
+ /**
18612
+ * 获取文字作品数据
18613
+ * @param options 请求参数,包含 aweme_id 和可选的 typeMode
18614
+ * @returns 统一格式的API响应,包含文字作品详细信息
18615
+ */
18616
+ getTextWorkInfo: <M extends TypeMode>(options: Omit<{
18617
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
18618
+ aweme_id: string;
18619
+ }, "methodType"> & {
18620
+ typeMode?: TypeMode;
18621
+ } & {
18622
+ typeMode?: M | undefined;
18623
+ }) => Promise<ApiResponse<ConditionalReturnType<DyTextWork, M>>>;
17732
18624
  /**
17733
18625
  * 聚合解析 (视频/图集/合辑)
17734
18626
  * @param options 请求参数,包含 aweme_id 和可选的 typeMode
17735
18627
  * @returns 统一格式的API响应,包含视频、图集或合辑数据
17736
18628
  */
17737
18629
  getWorkInfo: <M extends TypeMode>(options: Omit<{
17738
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
18630
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
17739
18631
  aweme_id: string;
17740
18632
  }, "methodType"> & {
17741
18633
  typeMode?: TypeMode;
17742
18634
  } & {
17743
18635
  typeMode?: M | undefined;
17744
- }) => Promise<ApiResponse<ConditionalReturnType<DyVideoWork | DyImageAlbumWork | DySlidesWork, M>>>;
18636
+ }) => Promise<ApiResponse<ConditionalReturnType<DyImageAlbumWork | DySlidesWork | DyVideoWork, M>>>;
17745
18637
  /**
17746
18638
  * 获取视频作品数据
17747
18639
  * @param options 请求参数,包含 aweme_id 和可选的 typeMode
@@ -17918,6 +18810,22 @@ declare const createBoundDouyinApi: (cookie: string, requestConfig: RequestConfi
17918
18810
  } & {
17919
18811
  typeMode?: M | undefined;
17920
18812
  }) => Promise<ApiResponse<ConditionalReturnType<DyUserLiveVideos, M>>>;
18813
+ /**
18814
+ * 获取弹幕数据
18815
+ * @param options 请求参数,包含 aweme_id, 可选的 start_time, end_time, duration 和 typeMode
18816
+ * @returns 统一格式的API响应,包含弹幕数据
18817
+ */
18818
+ getDanmaku: <M extends TypeMode>(options: Omit<{
18819
+ methodType: "\u5F39\u5E55\u6570\u636E";
18820
+ aweme_id: string;
18821
+ start_time?: number;
18822
+ end_time?: number;
18823
+ duration: number;
18824
+ }, "methodType"> & {
18825
+ typeMode?: TypeMode;
18826
+ } & {
18827
+ typeMode?: M | undefined;
18828
+ }) => Promise<ApiResponse<ConditionalReturnType<DyDanmakuList, M>>>;
17921
18829
  };
17922
18830
  /**
17923
18831
  * 绑定cookie的抖音API对象类型
@@ -18015,6 +18923,12 @@ declare class DouyinAPI {
18015
18923
  * @returns 完整的接口URL
18016
18924
  */
18017
18925
  申请二维码(data: DouyinMethodOptionsWithoutMethodType['QrcodeParams']): string;
18926
+ /**
18927
+ * 获取弹幕数据的接口地址
18928
+ * @param data - 请求参数,包含group_id、item_id等
18929
+ * @returns 完整的接口URL
18930
+ */
18931
+ 弹幕(data: DouyinMethodOptionsWithoutMethodType['DanmakuParams']): string;
18018
18932
  }
18019
18933
  /**
18020
18934
  * 默认的DouyinAPI实例(使用默认浏览器版本125.0.0.0)
@@ -18360,14 +19274,22 @@ declare const amagiClient: (options?: Options) => {
18360
19274
  }) => Promise<ApiResponse<ConditionalReturnType<KuaishouDataOptionsMap[T]["data"], M>>>;
18361
19275
  douyin: {
18362
19276
  api: {
19277
+ getTextWorkInfo: <M extends TypeMode>(options: Omit<{
19278
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
19279
+ aweme_id: string;
19280
+ }, "methodType"> & {
19281
+ typeMode?: TypeMode;
19282
+ } & {
19283
+ typeMode?: M | undefined;
19284
+ }) => Promise<ApiResponse<ConditionalReturnType<DyTextWork, M>>>;
18363
19285
  getWorkInfo: <M extends TypeMode>(options: Omit<{
18364
- methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790";
19286
+ methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E" | "\u56FE\u96C6\u4F5C\u54C1\u6570\u636E" | "\u5408\u8F91\u4F5C\u54C1\u6570\u636E" | "\u805A\u5408\u89E3\u6790" | "\u6587\u5B57\u4F5C\u54C1\u6570\u636E";
18365
19287
  aweme_id: string;
18366
19288
  }, "methodType"> & {
18367
19289
  typeMode?: TypeMode;
18368
19290
  } & {
18369
19291
  typeMode?: M | undefined;
18370
- }) => Promise<ApiResponse<ConditionalReturnType<DyVideoWork | DyImageAlbumWork | DySlidesWork, M>>>;
19292
+ }) => Promise<ApiResponse<ConditionalReturnType<DyImageAlbumWork | DySlidesWork | DyVideoWork, M>>>;
18371
19293
  getVideoWorkInfo: <M extends TypeMode>(options: Omit<{
18372
19294
  methodType: "\u89C6\u9891\u4F5C\u54C1\u6570\u636E";
18373
19295
  aweme_id: string;
@@ -18479,6 +19401,17 @@ declare const amagiClient: (options?: Options) => {
18479
19401
  } & {
18480
19402
  typeMode?: M | undefined;
18481
19403
  }) => Promise<ApiResponse<ConditionalReturnType<DyUserLiveVideos, M>>>;
19404
+ getDanmaku: <M extends TypeMode>(options: Omit<{
19405
+ methodType: "\u5F39\u5E55\u6570\u636E";
19406
+ aweme_id: string;
19407
+ start_time?: number;
19408
+ end_time?: number;
19409
+ duration: number;
19410
+ }, "methodType"> & {
19411
+ typeMode?: TypeMode;
19412
+ } & {
19413
+ typeMode?: M | undefined;
19414
+ }) => Promise<ApiResponse<ConditionalReturnType<DyDanmakuList, M>>>;
18482
19415
  };
18483
19416
  sign: typeof douyinSign;
18484
19417
  douyinApiUrls: typeof douyinApiUrls;
@@ -18714,4 +19647,4 @@ declare const CreateApp: AmagiConstructor;
18714
19647
  declare const Client: AmagiConstructor;
18715
19648
  declare const amagi: AmagiConstructor;
18716
19649
 
18717
- export { type APIErrorType, AdditionalType, ApiError, type ApiResponse, type BaseResponse, type BiliAv2Bv, type BiliBangumiVideoInfo, type BiliBangumiVideoPlayurlIsLogin, type BiliBangumiVideoPlayurlNoLogin, type BiliBiliVideoPlayurlNoLogin, type BiliBv2AV, type BiliCheckQrcode, type BiliDynamicCard, type BiliDynamicInfo, type BiliDynamicInfoUnion, type BiliEmojiList, type BiliLiveRoomDef, type BiliLiveRoomDetail, type BiliNewLoginQrcode, type BiliOneWork, type BiliUserDynamic, type BiliUserFullView, type BiliUserProfile, type BiliVideoPlayurlIsLogin, type BiliWorkComments, type BilibiliAv2BvParams, BilibiliAv2BvParamsSchema, type BilibiliBangumiInfoParams, BilibiliBangumiInfoParamsSchema, type BilibiliBangumiStreamParams, BilibiliBangumiStreamParamsSchema, type BilibiliBv2AvParams, BilibiliBv2AvParamsSchema, type BilibiliCommentParams, BilibiliCommentParamsSchema, type BilibiliDataOptions, type BilibiliDataOptionsMap, type BilibiliDynamicParams, BilibiliDynamicParamsSchema, type BilibiliEmojiParams, BilibiliEmojiParamsSchema, type BilibiliLiveParams, BilibiliLiveParamsSchema, type BilibiliLoginParams, BilibiliLoginParamsSchema, type BilibiliMethodOptionsMap, type BilibiliMethodType, type BilibiliQrcodeParams, BilibiliQrcodeParamsSchema, type BilibiliQrcodeStatusParams, BilibiliQrcodeStatusParamsSchema, type BilibiliUserParams, BilibiliUserParamsSchema, BilibiliValidationSchemas, type BilibiliVideoDownloadParams, BilibiliVideoDownloadParamsSchema, type BilibiliVideoParams, BilibiliVideoParamsSchema, type BoundBilibiliApi, type BoundDouyinApi, type BoundKuaishouApi, type CookieConfig, CreateApp, type DouyinCommentParams, DouyinCommentParamsSchema, type DouyinCommentReplyParams, DouyinCommentReplyParamsSchema, type DouyinDataOptions, type DouyinDataOptionsMap, type DouyinEmojiListParams, DouyinEmojiListParamsSchema, type DouyinEmojiProParams, DouyinEmojiProParamsSchema, type DouyinLiveRoomParams, type DouyinMethodOptionsMap, type DouyinMethodType, type DouyinMusicParams, DouyinMusicParamsSchema, type DouyinQrcodeParams, DouyinQrcodeParamsSchema, type DouyinSearchParams, DouyinSearchParamsSchema, type DouyinUserParams, DouyinUserParamsSchema, DouyinValidationSchemas, type DouyinWorkParams, DouyinWorkParamsSchema, type DyEmojiList, type DyEmojiProList, type DyImageAlbumWork, type DyMusicWork, type DySearchInfo, type DySlidesWork, type DySuggestWords, type DyUserInfo, type DyUserLiveVideos, type DyUserPostVideos, type DyVideoWork, type DyWorkComments, DynamicType, type DynamicTypeAV$1 as DynamicTypeAV, type DynamicTypeDraw$1 as DynamicTypeDraw, type DynamicTypeForward, type DynamicTypeForwardUnion, type DynamicTypeLiveRcmd, type DynamicTypeWord, type ErrorResponse, type KsEmojiList, type KsOneWork, type KsWorkComments, type KuaishouCommentParams, KuaishouCommentParamsSchema, type KuaishouDataOptions, type KuaishouDataOptionsMap, type KuaishouEmojiParams, KuaishouEmojiParamsSchema, type KuaishouMethodOptionsMap, type KuaishouMethodType, KuaishouValidationSchemas, type KuaishouVideoParams, KuaishouVideoParamsSchema, MajorType, type NetworksConfigType, type OmitMethodType, type Options, type RequestConfig, type SuccessResponse, type TypeControl, ValidationError, amagi, amagiClient, av2bv, bilibili, bilibiliApiUrls, bilibiliErrorCodeMap, bilibiliUtils, bv2av, createAmagiClient, createBilibiliRoutes, createBoundBilibiliApi, createBoundDouyinApi, createBoundKuaishouApi, createDouyinRoutes, createErrorResponse, createKuaishouRoutes, createSuccessResponse, Client as default, douyin, douyinApiUrls, douyinSign, douyinUtils, fetchData, fetchResponse, getBilibiliData, getDouyinData, getHeadersAndData, getKuaishouData, handleError, httpLogger, kuaishou, kuaishouApiUrls, kuaishouUtils, logMiddleware, logger, qtparam, createBilibiliRoutes as registerBilibiliRoutes, createDouyinRoutes as registerDouyinRoutes, createKuaishouRoutes as registerKuaishouRoutes, validateBilibiliParams, validateDouyinParams, validateKuaishouParams, wbi_sign };
19650
+ export { type APIErrorType, AdditionalType, ApiError, type ApiResponse, type BaseResponse, type BiliAv2Bv, type BiliBangumiVideoInfo, type BiliBangumiVideoPlayurlIsLogin, type BiliBangumiVideoPlayurlNoLogin, type BiliBiliVideoPlayurlNoLogin, type BiliBv2AV, type BiliCheckQrcode, type BiliDynamicCard, type BiliDynamicInfo, type BiliDynamicInfoUnion, type BiliEmojiList, type BiliLiveRoomDef, type BiliLiveRoomDetail, type BiliNewLoginQrcode, type BiliOneWork, type BiliUserDynamic, type BiliUserFullView, type BiliUserProfile, type BiliVideoPlayurlIsLogin, type BiliWorkComments, type BilibiliAv2BvParams, BilibiliAv2BvParamsSchema, type BilibiliBangumiInfoParams, BilibiliBangumiInfoParamsSchema, type BilibiliBangumiStreamParams, BilibiliBangumiStreamParamsSchema, type BilibiliBv2AvParams, BilibiliBv2AvParamsSchema, type BilibiliCommentParams, BilibiliCommentParamsSchema, type BilibiliDataOptions, type BilibiliDataOptionsMap, type BilibiliDynamicParams, BilibiliDynamicParamsSchema, type BilibiliEmojiParams, BilibiliEmojiParamsSchema, type BilibiliLiveParams, BilibiliLiveParamsSchema, type BilibiliLoginParams, BilibiliLoginParamsSchema, type BilibiliMethodOptionsMap, type BilibiliMethodType, type BilibiliQrcodeParams, BilibiliQrcodeParamsSchema, type BilibiliQrcodeStatusParams, BilibiliQrcodeStatusParamsSchema, type BilibiliUserParams, BilibiliUserParamsSchema, BilibiliValidationSchemas, type BilibiliVideoDownloadParams, BilibiliVideoDownloadParamsSchema, type BilibiliVideoParams, BilibiliVideoParamsSchema, type BoundBilibiliApi, type BoundDouyinApi, type BoundKuaishouApi, type CookieConfig, CreateApp, type DouyinCommentParams, DouyinCommentParamsSchema, type DouyinCommentReplyParams, DouyinCommentReplyParamsSchema, type DouyinDanmakuParams, DouyinDanmakuParamsSchema, type DouyinDataOptions, type DouyinDataOptionsMap, type DouyinEmojiListParams, DouyinEmojiListParamsSchema, type DouyinEmojiProParams, DouyinEmojiProParamsSchema, type DouyinLiveRoomParams, type DouyinMethodOptionsMap, type DouyinMethodType, type DouyinMusicParams, DouyinMusicParamsSchema, type DouyinQrcodeParams, DouyinQrcodeParamsSchema, type DouyinSearchParams, DouyinSearchParamsSchema, type DouyinUserParams, DouyinUserParamsSchema, DouyinValidationSchemas, type DouyinWorkParams, DouyinWorkParamsSchema, type DyDanmakuList, type DyEmojiList, type DyEmojiProList, type DyImageAlbumWork, type DyMusicWork, type DySearchInfo, type DySlidesWork, type DySuggestWords, type DyUserInfo, type DyUserLiveVideos, type DyUserPostVideos, type DyVideoWork, type DyWorkComments, DynamicType, type DynamicTypeAV$1 as DynamicTypeAV, type DynamicTypeDraw$1 as DynamicTypeDraw, type DynamicTypeForward, type DynamicTypeForwardUnion, type DynamicTypeLiveRcmd, type DynamicTypeWord, type ErrorResponse, type KsEmojiList, type KsOneWork, type KsWorkComments, type KuaishouCommentParams, KuaishouCommentParamsSchema, type KuaishouDataOptions, type KuaishouDataOptionsMap, type KuaishouEmojiParams, KuaishouEmojiParamsSchema, type KuaishouMethodOptionsMap, type KuaishouMethodType, KuaishouValidationSchemas, type KuaishouVideoParams, KuaishouVideoParamsSchema, MajorType, type NetworksConfigType, type OmitMethodType, type Options, type RequestConfig, type SuccessResponse, type TypeControl, ValidationError, amagi, amagiClient, av2bv, bilibili, bilibiliApiUrls, bilibiliErrorCodeMap, bilibiliUtils, bv2av, createAmagiClient, createBilibiliRoutes, createBoundBilibiliApi, createBoundDouyinApi, createBoundKuaishouApi, createDouyinRoutes, createErrorResponse, createKuaishouRoutes, createSuccessResponse, Client as default, douyin, douyinApiUrls, douyinSign, douyinUtils, fetchData, fetchResponse, getBilibiliData, getDouyinData, getHeadersAndData, getKuaishouData, handleError, httpLogger, kuaishou, kuaishouApiUrls, kuaishouUtils, logMiddleware, logger, qtparam, createBilibiliRoutes as registerBilibiliRoutes, createDouyinRoutes as registerDouyinRoutes, createKuaishouRoutes as registerKuaishouRoutes, validateBilibiliParams, validateDouyinParams, validateKuaishouParams, wbi_sign };