@ikenxuan/amagi 5.7.2 → 5.8.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.
@@ -822,6 +822,219 @@ declare const validateXiaohongshuParams: <T extends XiaohongshuMethodType>(metho
822
822
  note_type?: number | undefined;
823
823
  };
824
824
  //#endregion
825
+ //#region src/types/BilibiliAPIParams.d.ts
826
+ interface BilibiliMethodOptionsMap {
827
+ VideoInfoParams: {
828
+ methodType: '单个视频作品数据';
829
+ /** 稿件BVID */
830
+ bvid: string;
831
+ };
832
+ VideoStreamParams: {
833
+ methodType: '单个视频下载信息数据';
834
+ /** 稿件AVID */
835
+ avid: number;
836
+ /** 稿件cid */
837
+ cid: number;
838
+ };
839
+ CommentParams: {
840
+ methodType: '评论数据';
841
+ /** 评论区类型代码,详见 [评论区类型代码](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/comment/readme.md#%E8%AF%84%E8%AE%BA%E5%8C%BA%E7%B1%BB%E5%9E%8B%E4%BB%A3%E7%A0%81) */
842
+ type: CommentType;
843
+ /** 稿件ID,也就是AV号去除前缀后的内容 */
844
+ oid: string;
845
+ /**
846
+ * 获取的评论数量,默认20
847
+ * @defaultValue 20
848
+ */
849
+ number?: number;
850
+ /**
851
+ * 排序方式
852
+ * 默认为3
853
+ * 0和3: 仅热度
854
+ * 1: 按热度+按时间
855
+ * 2: 仅时间
856
+ * @defaultValue 3
857
+ */
858
+ mode?: 0 | 1 | 2 | 3;
859
+ /**
860
+ * 翻页信息,用于懒加载分页
861
+ * 首次请求时不传,后续请求使用上次响应中的 data.cursor.pagination_reply.next_offset
862
+ */
863
+ pagination_str?: string;
864
+ /**
865
+ * 平台类型
866
+ * @defaultValue 1
867
+ */
868
+ plat?: number;
869
+ /**
870
+ * 当获取第一页评论时存在
871
+ */
872
+ seek_rpid?: string;
873
+ /**
874
+ * web位置参数
875
+ * @defaultValue 1315875
876
+ */
877
+ web_location?: string;
878
+ };
879
+ /** 指定评论的回复 */
880
+ CommentReplyParams: {
881
+ methodType: '指定评论的回复';
882
+ /** 评论区类型代码,详见 [评论区类型代码](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/comment/readme.md#%E8%AF%84%E8%AE%BA%E5%8C%BA%E7%B1%BB%E5%9E%8B%E4%BB%A3%E7%A0%81) */
883
+ type: CommentType;
884
+ /** 目标评论区 ID,也就是AV号去除前缀后的内容 */
885
+ oid: string;
886
+ /** 根评论ID */
887
+ root: string;
888
+ /**
889
+ * 获取的评论数量,默认20
890
+ * @defaultValue 20
891
+ */
892
+ number?: number;
893
+ };
894
+ UserParams: {
895
+ methodType: '用户主页数据' | '用户主页动态列表数据' | '获取UP主总播放量';
896
+ /** UP主UID */
897
+ host_mid: number;
898
+ };
899
+ DynamicParams: {
900
+ methodType: '动态详情数据' | '动态卡片数据';
901
+ /** 动态ID */
902
+ dynamic_id: string;
903
+ };
904
+ BangumiInfoParams: {
905
+ methodType: '番剧基本信息数据';
906
+ /** 稿件ep_id,其含义为 {@link https://www.bilibili.com/anime/index | 番剧索引} 或 **我的追番** 中的番剧,对应网址中包含ss号,如:{@link https://www.bilibili.com/bangumi/play/ss33802} */
907
+ season_id?: string;
908
+ /** 稿件ep_id,番剧的某一集,对应网址中包含ep号,如:{@link https://www.bilibili.com/bangumi/play/ep330798} */
909
+ ep_id?: string;
910
+ };
911
+ BangumiStreamParams: {
912
+ methodType: '番剧下载信息数据';
913
+ /** 稿件cid */
914
+ cid: number;
915
+ /** 稿件ep_id,番剧的某一集,对应网址中包含ep号,如:{@link https://www.bilibili.com/bangumi/play/ep330798} */
916
+ ep_id: string;
917
+ };
918
+ LiveRoomParams: {
919
+ methodType: '直播间信息' | '直播间初始化信息';
920
+ /** 直播间ID */
921
+ room_id: string;
922
+ };
923
+ QrcodeParams: {
924
+ methodType: '二维码状态';
925
+ /** 扫码登录秘钥 */
926
+ qrcode_key: string;
927
+ };
928
+ EmojiParams: {
929
+ methodType: 'Emoji数据';
930
+ };
931
+ LoginBaseInfoParams: {
932
+ methodType: '登录基本信息';
933
+ };
934
+ GetQrcodeParams: {
935
+ methodType: '申请二维码';
936
+ };
937
+ Bv2AvParams: {
938
+ methodType: 'BV转AV';
939
+ /** 视频BV号 */
940
+ bvid: string;
941
+ };
942
+ Av2BvParams: {
943
+ methodType: 'AV转BV';
944
+ /** 视频AV号 */
945
+ avid: number;
946
+ };
947
+ ArticleParams: {
948
+ methodType: '专栏正文内容';
949
+ /**
950
+ * 专栏ID
951
+ * * 如:{@link https://www.bilibili.com/read/cv43496899/?jump_opus=1}
952
+ * * 43496899 就是专栏ID
953
+ * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/view.md#获取专栏正文内容}
954
+ */
955
+ id: string;
956
+ };
957
+ ArticleCardParams: {
958
+ methodType: '专栏显示卡片信息';
959
+ /**
960
+ * 被查询的 id 列表
961
+ * 可传视频 **完整** AV/BV 号, 专栏 CV 号, 直播间长短 lv 号
962
+ * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/card.md#获取专栏显示卡片信息}
963
+ */
964
+ ids: string[] | string;
965
+ };
966
+ ArticleInfoParams: {
967
+ methodType: '专栏文章基本信息';
968
+ /**
969
+ * 专栏ID
970
+ * * 如:{@link https://www.bilibili.com/read/cv43496899/?jump_opus=1}
971
+ * * 43496899 就是专栏ID
972
+ * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/view.md#获取专栏文章基本信息}
973
+ */
974
+ id: string;
975
+ };
976
+ ColumnInfoParams: {
977
+ methodType: '文集基本信息';
978
+ /**
979
+ * 文集rlid,这个好像也是专栏ID
980
+ * * 如:{@link https://www.bilibili.com/read/cv208340/?jump_opus=1}
981
+ * * 208340 就是文集rlid
982
+ * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/articles.md#获取文集基本信息}
983
+ */
984
+ id: string;
985
+ };
986
+ }
987
+ /**
988
+ * 评论区类型枚举
989
+ * 对应 CommentParams.type 与 CommentReplyParams.type
990
+ */
991
+ declare enum CommentType {
992
+ /** 视频稿件:oid 为稿件 avid */
993
+ Video = 1,
994
+ /** 话题:oid 为话题 id */
995
+ Topic = 2,
996
+ /** 活动:oid 为活动 id */
997
+ Activity = 4,
998
+ /** 小视频:oid 为小视频 id */
999
+ SmallVideo = 5,
1000
+ /** 小黑屋封禁信息:oid 为封禁公示 id */
1001
+ BlockInfo = 6,
1002
+ /** 公告信息:oid 为公告 id */
1003
+ Announcement = 7,
1004
+ /** 直播活动:oid 为直播间 id */
1005
+ LiveActivity = 8,
1006
+ /** 活动稿件:oid 含义未知 */
1007
+ ActivityVideo = 9,
1008
+ /** 直播公告:oid 含义未知 */
1009
+ LiveAnnouncement = 10,
1010
+ /** 相簿(图片动态):oid 为相簿 id */
1011
+ Album = 11,
1012
+ /** 专栏:oid 为专栏 cvid */
1013
+ Article = 12,
1014
+ /** 票务:oid 含义未知 */
1015
+ Ticket = 13,
1016
+ /** 音频:oid 为音频 auid */
1017
+ Audio = 14,
1018
+ /** 风纪委员会:oid 为众裁项目 id */
1019
+ Jury = 15,
1020
+ /** 点评:oid 含义未知 */
1021
+ Review = 16,
1022
+ /** 动态(纯文字动态&分享):oid 为动态 id */
1023
+ Dynamic = 17,
1024
+ /** 播单:oid 含义未知 */
1025
+ Playlist = 18,
1026
+ /** 音乐播单:oid 含义未知 */
1027
+ MusicPlaylist = 19,
1028
+ /** 漫画:oid 含义未知 */
1029
+ Comic1 = 20,
1030
+ /** 漫画:oid 含义未知 */
1031
+ Comic2 = 21,
1032
+ /** 漫画:oid 为漫画 mcid */
1033
+ Comic = 22,
1034
+ /** 课程:oid 为课程 epid */
1035
+ Course = 33,
1036
+ }
1037
+ //#endregion
825
1038
  //#region src/validation/bilibili.d.ts
826
1039
  /**
827
1040
  * 视频信息参数类型
@@ -835,6 +1048,10 @@ type BilibiliVideoDownloadParams = BilibiliMethodOptionsMap['VideoStreamParams']
835
1048
  * 评论参数类型
836
1049
  */
837
1050
  type BilibiliCommentParams = BilibiliMethodOptionsMap['CommentParams'];
1051
+ /**
1052
+ * 指定评论的回复参数类型
1053
+ */
1054
+ type BilibiliCommentReplyParams = BilibiliMethodOptionsMap['CommentReplyParams'];
838
1055
  /**
839
1056
  * 用户信息参数类型
840
1057
  */
@@ -898,6 +1115,7 @@ type BilibiliColumnInfoParams = BilibiliMethodOptionsMap['ColumnInfoParams'];
898
1115
  declare const BilibiliVideoParamsSchema: z.ZodType<BilibiliVideoParams>;
899
1116
  declare const BilibiliVideoDownloadParamsSchema: z.ZodType<BilibiliVideoDownloadParams>;
900
1117
  declare const BilibiliCommentParamsSchema: z.ZodType<BilibiliCommentParams>;
1118
+ declare const BilibiliCommentReplyParamsSchema: z.ZodType<BilibiliCommentReplyParams>;
901
1119
  declare const BilibiliUserParamsSchema: z.ZodType<BilibiliUserParams>;
902
1120
  declare const BilibiliEmojiParamsSchema: z.ZodType<BilibiliEmojiParams>;
903
1121
  declare const BilibiliBangumiInfoParamsSchema: z.ZodType<BilibiliBangumiInfoParams>;
@@ -932,7 +1150,7 @@ declare const BilibiliValidationSchemas: {
932
1150
  }, unknown>>;
933
1151
  readonly 评论数据: z.ZodType<{
934
1152
  methodType: "\u8BC4\u8BBA\u6570\u636E";
935
- type: number;
1153
+ type: CommentType;
936
1154
  oid: string;
937
1155
  number?: number;
938
1156
  mode?: 0 | 1 | 2 | 3;
@@ -942,7 +1160,7 @@ declare const BilibiliValidationSchemas: {
942
1160
  web_location?: string;
943
1161
  }, unknown, z.core.$ZodTypeInternals<{
944
1162
  methodType: "\u8BC4\u8BBA\u6570\u636E";
945
- type: number;
1163
+ type: CommentType;
946
1164
  oid: string;
947
1165
  number?: number;
948
1166
  mode?: 0 | 1 | 2 | 3;
@@ -951,6 +1169,19 @@ declare const BilibiliValidationSchemas: {
951
1169
  seek_rpid?: string;
952
1170
  web_location?: string;
953
1171
  }, unknown>>;
1172
+ readonly 指定评论的回复: z.ZodType<{
1173
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
1174
+ type: CommentType;
1175
+ oid: string;
1176
+ root: string;
1177
+ number?: number;
1178
+ }, unknown, z.core.$ZodTypeInternals<{
1179
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
1180
+ type: CommentType;
1181
+ oid: string;
1182
+ root: string;
1183
+ number?: number;
1184
+ }, unknown>>;
954
1185
  readonly 用户主页数据: z.ZodType<{
955
1186
  methodType: "\u7528\u6237\u4E3B\u9875\u6570\u636E" | "\u7528\u6237\u4E3B\u9875\u52A8\u6001\u5217\u8868\u6570\u636E" | "\u83B7\u53D6UP\u4E3B\u603B\u64AD\u653E\u91CF";
956
1187
  host_mid: number;
@@ -1457,154 +1688,6 @@ declare const KuaishouValidationSchemas: {
1457
1688
  };
1458
1689
  type KuaishouMethodType = keyof typeof KuaishouValidationSchemas;
1459
1690
  //#endregion
1460
- //#region src/types/BilibiliAPIParams.d.ts
1461
- interface BilibiliMethodOptionsMap {
1462
- VideoInfoParams: {
1463
- methodType: '单个视频作品数据';
1464
- /** 稿件BVID */
1465
- bvid: string;
1466
- };
1467
- VideoStreamParams: {
1468
- methodType: '单个视频下载信息数据';
1469
- /** 稿件AVID */
1470
- avid: number;
1471
- /** 稿件cid */
1472
- cid: number;
1473
- };
1474
- CommentParams: {
1475
- methodType: '评论数据';
1476
- /** 评论区类型代码,详见 [评论区类型代码](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/comment/readme.md#%E8%AF%84%E8%AE%BA%E5%8C%BA%E7%B1%BB%E5%9E%8B%E4%BB%A3%E7%A0%81) */
1477
- type: number;
1478
- /** 稿件ID,也就是AV号去除前缀后的内容 */
1479
- oid: string;
1480
- /**
1481
- * 获取的评论数量,默认20
1482
- * @defaultValue 20
1483
- */
1484
- number?: number;
1485
- /**
1486
- * 排序方式
1487
- * 默认为3
1488
- * 0和3: 仅热度
1489
- * 1: 按热度+按时间
1490
- * 2: 仅时间
1491
- * @defaultValue 3
1492
- */
1493
- mode?: 0 | 1 | 2 | 3;
1494
- /**
1495
- * 翻页信息,用于懒加载分页
1496
- * 首次请求时不传,后续请求使用上次响应中的 data.cursor.pagination_reply.next_offset
1497
- */
1498
- pagination_str?: string;
1499
- /**
1500
- * 平台类型
1501
- * @defaultValue 1
1502
- */
1503
- plat?: number;
1504
- /**
1505
- * 当获取第一页评论时存在
1506
- */
1507
- seek_rpid?: string;
1508
- /**
1509
- * web位置参数
1510
- * @defaultValue 1315875
1511
- */
1512
- web_location?: string;
1513
- };
1514
- UserParams: {
1515
- methodType: '用户主页数据' | '用户主页动态列表数据' | '获取UP主总播放量';
1516
- /** UP主UID */
1517
- host_mid: number;
1518
- };
1519
- DynamicParams: {
1520
- methodType: '动态详情数据' | '动态卡片数据';
1521
- /** 动态ID */
1522
- dynamic_id: string;
1523
- };
1524
- BangumiInfoParams: {
1525
- methodType: '番剧基本信息数据';
1526
- /** 稿件ep_id,其含义为 {@link https://www.bilibili.com/anime/index | 番剧索引} 或 **我的追番** 中的番剧,对应网址中包含ss号,如:{@link https://www.bilibili.com/bangumi/play/ss33802} */
1527
- season_id?: string;
1528
- /** 稿件ep_id,番剧的某一集,对应网址中包含ep号,如:{@link https://www.bilibili.com/bangumi/play/ep330798} */
1529
- ep_id?: string;
1530
- };
1531
- BangumiStreamParams: {
1532
- methodType: '番剧下载信息数据';
1533
- /** 稿件cid */
1534
- cid: number;
1535
- /** 稿件ep_id,番剧的某一集,对应网址中包含ep号,如:{@link https://www.bilibili.com/bangumi/play/ep330798} */
1536
- ep_id: string;
1537
- };
1538
- LiveRoomParams: {
1539
- methodType: '直播间信息' | '直播间初始化信息';
1540
- /** 直播间ID */
1541
- room_id: string;
1542
- };
1543
- QrcodeParams: {
1544
- methodType: '二维码状态';
1545
- /** 扫码登录秘钥 */
1546
- qrcode_key: string;
1547
- };
1548
- EmojiParams: {
1549
- methodType: 'Emoji数据';
1550
- };
1551
- LoginBaseInfoParams: {
1552
- methodType: '登录基本信息';
1553
- };
1554
- GetQrcodeParams: {
1555
- methodType: '申请二维码';
1556
- };
1557
- Bv2AvParams: {
1558
- methodType: 'BV转AV';
1559
- /** 视频BV号 */
1560
- bvid: string;
1561
- };
1562
- Av2BvParams: {
1563
- methodType: 'AV转BV';
1564
- /** 视频AV号 */
1565
- avid: number;
1566
- };
1567
- ArticleParams: {
1568
- methodType: '专栏正文内容';
1569
- /**
1570
- * 专栏ID
1571
- * * 如:{@link https://www.bilibili.com/read/cv43496899/?jump_opus=1}
1572
- * * 43496899 就是专栏ID
1573
- * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/view.md#获取专栏正文内容}
1574
- */
1575
- id: string;
1576
- };
1577
- ArticleCardParams: {
1578
- methodType: '专栏显示卡片信息';
1579
- /**
1580
- * 被查询的 id 列表
1581
- * 可传视频 **完整** AV/BV 号, 专栏 CV 号, 直播间长短 lv 号
1582
- * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/card.md#获取专栏显示卡片信息}
1583
- */
1584
- ids: string[] | string;
1585
- };
1586
- ArticleInfoParams: {
1587
- methodType: '专栏文章基本信息';
1588
- /**
1589
- * 专栏ID
1590
- * * 如:{@link https://www.bilibili.com/read/cv43496899/?jump_opus=1}
1591
- * * 43496899 就是专栏ID
1592
- * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/view.md#获取专栏文章基本信息}
1593
- */
1594
- id: string;
1595
- };
1596
- ColumnInfoParams: {
1597
- methodType: '文集基本信息';
1598
- /**
1599
- * 文集rlid,这个好像也是专栏ID
1600
- * * 如:{@link https://www.bilibili.com/read/cv208340/?jump_opus=1}
1601
- * * 208340 就是文集rlid
1602
- * * API Docs {@link https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/article/articles.md#获取文集基本信息}
1603
- */
1604
- id: string;
1605
- };
1606
- }
1607
- //#endregion
1608
1691
  //#region src/types/NetworksConfigType.d.ts
1609
1692
  type NetworksConfigType = {
1610
1693
  /**
@@ -1802,12 +1885,12 @@ declare enum xiaohongshuAPIErrorCode {
1802
1885
  //#region src/types/ReturnDataType/Bilibili/ArticleCard.d.ts
1803
1886
  type ArticleCard = {
1804
1887
  code: number;
1805
- data: DataData$22;
1888
+ data: DataData$23;
1806
1889
  message: string;
1807
1890
  ttl: number;
1808
1891
  [property: string]: any;
1809
1892
  };
1810
- type DataData$22 = {
1893
+ type DataData$23 = {
1811
1894
  av2: Av2;
1812
1895
  cv1: Cv1;
1813
1896
  cv2: Cv2;
@@ -2166,12 +2249,12 @@ type Lv5440 = {
2166
2249
  //#region src/types/ReturnDataType/Bilibili/ArticleContent.d.ts
2167
2250
  type ArticleContent = {
2168
2251
  code: number;
2169
- data: DataData$21;
2252
+ data: DataData$22;
2170
2253
  message: string;
2171
2254
  ttl: number;
2172
2255
  [property: string]: any;
2173
2256
  };
2174
- type DataData$21 = {
2257
+ type DataData$22 = {
2175
2258
  act_id: number;
2176
2259
  apply_time: string;
2177
2260
  authenMark: null;
@@ -2219,13 +2302,13 @@ type Author$7 = {
2219
2302
  level: number;
2220
2303
  mid: number;
2221
2304
  name: string;
2222
- nameplate: Nameplate$2;
2223
- official_verify: OfficialVerify$8;
2305
+ nameplate: Nameplate$3;
2306
+ official_verify: OfficialVerify$9;
2224
2307
  pendant: Pendant$9;
2225
- vip: Vip$8;
2308
+ vip: Vip$9;
2226
2309
  [property: string]: any;
2227
2310
  };
2228
- type Nameplate$2 = {
2311
+ type Nameplate$3 = {
2229
2312
  condition: string;
2230
2313
  image: string;
2231
2314
  image_small: string;
@@ -2234,7 +2317,7 @@ type Nameplate$2 = {
2234
2317
  nid: number;
2235
2318
  [property: string]: any;
2236
2319
  };
2237
- type OfficialVerify$8 = {
2320
+ type OfficialVerify$9 = {
2238
2321
  desc: string;
2239
2322
  type: number;
2240
2323
  [property: string]: any;
@@ -2246,10 +2329,10 @@ type Pendant$9 = {
2246
2329
  pid: number;
2247
2330
  [property: string]: any;
2248
2331
  };
2249
- type Vip$8 = {
2332
+ type Vip$9 = {
2250
2333
  avatar_subscript: number;
2251
2334
  due_date: number;
2252
- label: Label$8;
2335
+ label: Label$9;
2253
2336
  nickname_color: string;
2254
2337
  status: number;
2255
2338
  theme_type: number;
@@ -2257,7 +2340,7 @@ type Vip$8 = {
2257
2340
  vip_pay_type: number;
2258
2341
  [property: string]: any;
2259
2342
  };
2260
- type Label$8 = {
2343
+ type Label$9 = {
2261
2344
  label_theme: string;
2262
2345
  path: string;
2263
2346
  text: string;
@@ -2289,7 +2372,7 @@ type Media = {
2289
2372
  };
2290
2373
  type Opus$5 = {
2291
2374
  article: Article$1;
2292
- content: Content;
2375
+ content: Content$1;
2293
2376
  opus_id: number;
2294
2377
  opus_source: number;
2295
2378
  pub_info: PubInfo;
@@ -2310,7 +2393,7 @@ type Cover$6 = {
2310
2393
  width?: number;
2311
2394
  [property: string]: any;
2312
2395
  };
2313
- type Content = {
2396
+ type Content$1 = {
2314
2397
  paragraphs: Paragraph[];
2315
2398
  [property: string]: any;
2316
2399
  };
@@ -2383,12 +2466,12 @@ type Stats$1 = {
2383
2466
  //#region src/types/ReturnDataType/Bilibili/ArticleInfo.d.ts
2384
2467
  type ArticleInfo = {
2385
2468
  code: number;
2386
- data: DataData$20;
2469
+ data: DataData$21;
2387
2470
  message: string;
2388
2471
  ttl: number;
2389
2472
  [property: string]: any;
2390
2473
  };
2391
- type DataData$20 = {
2474
+ type DataData$21 = {
2392
2475
  attention: boolean;
2393
2476
  author_name: string;
2394
2477
  banner_url: string;
@@ -3093,12 +3176,12 @@ type Data$14 = {
3093
3176
  //#region src/types/ReturnDataType/Bilibili/ColumnInfo.d.ts
3094
3177
  type ColumnInfo = {
3095
3178
  code: number;
3096
- data: DataData$19;
3179
+ data: DataData$20;
3097
3180
  message: string;
3098
3181
  ttl: number;
3099
3182
  [property: string]: any;
3100
3183
  };
3101
- type DataData$19 = {
3184
+ type DataData$20 = {
3102
3185
  articles: null;
3103
3186
  attention: boolean;
3104
3187
  author: Author$6;
@@ -3112,13 +3195,13 @@ type Author$6 = {
3112
3195
  level: number;
3113
3196
  mid: number;
3114
3197
  name: string;
3115
- nameplate: Nameplate$1;
3116
- official_verify: OfficialVerify$7;
3198
+ nameplate: Nameplate$2;
3199
+ official_verify: OfficialVerify$8;
3117
3200
  pendant: Pendant$7;
3118
- vip: Vip$7;
3201
+ vip: Vip$8;
3119
3202
  [property: string]: any;
3120
3203
  };
3121
- type Nameplate$1 = {
3204
+ type Nameplate$2 = {
3122
3205
  condition: string;
3123
3206
  image: string;
3124
3207
  image_small: string;
@@ -3127,7 +3210,7 @@ type Nameplate$1 = {
3127
3210
  nid: number;
3128
3211
  [property: string]: any;
3129
3212
  };
3130
- type OfficialVerify$7 = {
3213
+ type OfficialVerify$8 = {
3131
3214
  desc: string;
3132
3215
  type: number;
3133
3216
  [property: string]: any;
@@ -3139,10 +3222,10 @@ type Pendant$7 = {
3139
3222
  pid: number;
3140
3223
  [property: string]: any;
3141
3224
  };
3142
- type Vip$7 = {
3225
+ type Vip$8 = {
3143
3226
  avatar_subscript: number;
3144
3227
  due_date: number;
3145
- label: Label$7;
3228
+ label: Label$8;
3146
3229
  nickname_color: string;
3147
3230
  status: number;
3148
3231
  theme_type: number;
@@ -3150,7 +3233,7 @@ type Vip$7 = {
3150
3233
  vip_pay_type: number;
3151
3234
  [property: string]: any;
3152
3235
  };
3153
- type Label$7 = {
3236
+ type Label$8 = {
3154
3237
  label_theme: string;
3155
3238
  path: string;
3156
3239
  text: string;
@@ -3221,13 +3304,13 @@ declare enum DynamicType {
3221
3304
  FORWARD = "DYNAMIC_TYPE_FORWARD",
3222
3305
  ARTICLE = "DYNAMIC_TYPE_ARTICLE",
3223
3306
  }
3224
- type DataData$18<T extends DynamicType> = {
3307
+ type DataData$19<T extends DynamicType> = {
3225
3308
  item: DynamicTypeItemMap$1[T];
3226
3309
  [property: string]: any;
3227
3310
  };
3228
3311
  type BiliDynamicInfo<T extends DynamicType> = {
3229
3312
  code: number;
3230
- data: DataData$18<T>;
3313
+ data: DataData$19<T>;
3231
3314
  message: string;
3232
3315
  ttl: number;
3233
3316
  [property: string]: any;
@@ -3237,12 +3320,12 @@ type BiliDynamicInfoUnion = BiliDynamicInfo<DynamicType.AV> | BiliDynamicInfo<Dy
3237
3320
  //#region src/types/ReturnDataType/Bilibili/Dynamic/DYNAMIC_TYPE_ARTICLE.d.ts
3238
3321
  type DynamicTypeArticle = {
3239
3322
  code: number;
3240
- data: DataData$17;
3323
+ data: DataData$18;
3241
3324
  message: string;
3242
3325
  ttl: number;
3243
3326
  [property: string]: any;
3244
3327
  };
3245
- type DataData$17 = {
3328
+ type DataData$18 = {
3246
3329
  item: Item$11;
3247
3330
  [property: string]: any;
3248
3331
  };
@@ -3285,113 +3368,113 @@ type ModuleAuthor$4 = {
3285
3368
  label: string;
3286
3369
  mid: number;
3287
3370
  name: string;
3288
- official_verify: OfficialVerify$6;
3371
+ official_verify: OfficialVerify$7;
3289
3372
  pendant: Pendant$6;
3290
3373
  pub_action: string;
3291
3374
  pub_location_text: string;
3292
3375
  pub_time: string;
3293
3376
  pub_ts: number;
3294
3377
  type: string;
3295
- vip: Vip$6;
3378
+ vip: Vip$7;
3296
3379
  [property: string]: any;
3297
3380
  };
3298
3381
  type Avatar$4 = {
3299
- container_size: ContainerSize$4;
3300
- fallback_layers: FallbackLayers$4;
3382
+ container_size: ContainerSize$5;
3383
+ fallback_layers: FallbackLayers$5;
3301
3384
  mid: string;
3302
3385
  [property: string]: any;
3303
3386
  };
3304
- type ContainerSize$4 = {
3387
+ type ContainerSize$5 = {
3305
3388
  height: number;
3306
3389
  width: number;
3307
3390
  [property: string]: any;
3308
3391
  };
3309
- type FallbackLayers$4 = {
3392
+ type FallbackLayers$5 = {
3310
3393
  is_critical_group: boolean;
3311
- layers: Layer$4[];
3394
+ layers: Layer$5[];
3312
3395
  [property: string]: any;
3313
3396
  };
3314
- type Layer$4 = {
3315
- general_spec: GeneralSpec$4;
3316
- layer_config: LayerConfig$4;
3317
- resource: Resource$4;
3397
+ type Layer$5 = {
3398
+ general_spec: GeneralSpec$5;
3399
+ layer_config: LayerConfig$5;
3400
+ resource: Resource$5;
3318
3401
  visible: boolean;
3319
3402
  [property: string]: any;
3320
3403
  };
3321
- type GeneralSpec$4 = {
3322
- pos_spec: PosSpec$4;
3323
- render_spec: RenderSpec$4;
3324
- size_spec: SizeSpec$4;
3404
+ type GeneralSpec$5 = {
3405
+ pos_spec: PosSpec$5;
3406
+ render_spec: RenderSpec$5;
3407
+ size_spec: SizeSpec$5;
3325
3408
  [property: string]: any;
3326
3409
  };
3327
- type PosSpec$4 = {
3410
+ type PosSpec$5 = {
3328
3411
  axis_x: number;
3329
3412
  axis_y: number;
3330
3413
  coordinate_pos: number;
3331
3414
  [property: string]: any;
3332
3415
  };
3333
- type RenderSpec$4 = {
3416
+ type RenderSpec$5 = {
3334
3417
  opacity: number;
3335
3418
  [property: string]: any;
3336
3419
  };
3337
- type SizeSpec$4 = {
3420
+ type SizeSpec$5 = {
3338
3421
  height: number;
3339
3422
  width: number;
3340
3423
  [property: string]: any;
3341
3424
  };
3342
- type LayerConfig$4 = {
3425
+ type LayerConfig$5 = {
3343
3426
  is_critical?: boolean;
3344
- tags: Tags$4;
3427
+ tags: Tags$5;
3345
3428
  [property: string]: any;
3346
3429
  };
3347
- type Tags$4 = {
3430
+ type Tags$5 = {
3348
3431
  AVATAR_LAYER?: {
3349
3432
  [key: string]: any;
3350
3433
  };
3351
- GENERAL_CFG: GeneralCFG$4;
3434
+ GENERAL_CFG: GeneralCFG$5;
3352
3435
  ICON_LAYER: {
3353
3436
  [key: string]: any;
3354
3437
  };
3355
3438
  [property: string]: any;
3356
3439
  };
3357
- type GeneralCFG$4 = {
3440
+ type GeneralCFG$5 = {
3358
3441
  config_type: number;
3359
- general_config: GeneralConfig$4;
3442
+ general_config: GeneralConfig$5;
3360
3443
  [property: string]: any;
3361
3444
  };
3362
- type GeneralConfig$4 = {
3363
- web_css_style: WebcssStyle$4;
3445
+ type GeneralConfig$5 = {
3446
+ web_css_style: WebcssStyle$5;
3364
3447
  [property: string]: any;
3365
3448
  };
3366
- type WebcssStyle$4 = {
3449
+ type WebcssStyle$5 = {
3367
3450
  'background-color': string;
3368
3451
  border: string;
3369
3452
  borderRadius: string;
3370
3453
  boxSizing: string;
3371
3454
  [property: string]: any;
3372
3455
  };
3373
- type Resource$4 = {
3374
- res_image: ResImage$4;
3456
+ type Resource$5 = {
3457
+ res_image: ResImage$5;
3375
3458
  res_type: number;
3376
3459
  [property: string]: any;
3377
3460
  };
3378
- type ResImage$4 = {
3379
- image_src: ImageSrc$4;
3461
+ type ResImage$5 = {
3462
+ image_src: ImageSrc$5;
3380
3463
  [property: string]: any;
3381
3464
  };
3382
- type ImageSrc$4 = {
3465
+ type ImageSrc$5 = {
3383
3466
  local: number;
3384
3467
  placeholder?: number;
3385
- remote?: Remote$4;
3468
+ remote?: Remote$5;
3386
3469
  src_type: number;
3387
3470
  [property: string]: any;
3388
3471
  };
3389
- type Remote$4 = {
3472
+ type Remote$5 = {
3390
3473
  bfs_style: string;
3391
3474
  url: string;
3392
3475
  [property: string]: any;
3393
3476
  };
3394
- type OfficialVerify$6 = {
3477
+ type OfficialVerify$7 = {
3395
3478
  desc: string;
3396
3479
  type: number;
3397
3480
  [property: string]: any;
@@ -3406,18 +3489,18 @@ type Pendant$6 = {
3406
3489
  pid: number;
3407
3490
  [property: string]: any;
3408
3491
  };
3409
- type Vip$6 = {
3492
+ type Vip$7 = {
3410
3493
  avatar_subscript: number;
3411
3494
  avatar_subscript_url: string;
3412
3495
  due_date: number;
3413
- label: Label$6;
3496
+ label: Label$7;
3414
3497
  nickname_color: string;
3415
3498
  status: number;
3416
3499
  theme_type: number;
3417
3500
  type: number;
3418
3501
  [property: string]: any;
3419
3502
  };
3420
- type Label$6 = {
3503
+ type Label$7 = {
3421
3504
  bg_color: string;
3422
3505
  bg_style: number;
3423
3506
  border_color: string;
@@ -3498,12 +3581,12 @@ type Like$9 = {
3498
3581
  //#region src/types/ReturnDataType/Bilibili/Dynamic/DYNAMIC_TYPE_AV.d.ts
3499
3582
  type DynamicTypeAV = {
3500
3583
  code: number;
3501
- data: DataData$16;
3584
+ data: DataData$17;
3502
3585
  message: string;
3503
3586
  ttl: number;
3504
3587
  [property: string]: any;
3505
3588
  };
3506
- type DataData$16 = {
3589
+ type DataData$17 = {
3507
3590
  item: Item$10;
3508
3591
  [property: string]: any;
3509
3592
  };
@@ -3545,113 +3628,113 @@ type ModuleAuthor$3 = {
3545
3628
  label: string;
3546
3629
  mid: number;
3547
3630
  name: string;
3548
- official_verify: OfficialVerify$5;
3631
+ official_verify: OfficialVerify$6;
3549
3632
  pendant: Pendant$5;
3550
3633
  pub_action: string;
3551
3634
  pub_location_text: string;
3552
3635
  pub_time: string;
3553
3636
  pub_ts: number;
3554
3637
  type: string;
3555
- vip: Vip$5;
3638
+ vip: Vip$6;
3556
3639
  [property: string]: any;
3557
3640
  };
3558
3641
  type Avatar$3 = {
3559
- container_size: ContainerSize$3;
3560
- fallback_layers: FallbackLayers$3;
3642
+ container_size: ContainerSize$4;
3643
+ fallback_layers: FallbackLayers$4;
3561
3644
  mid: string;
3562
3645
  [property: string]: any;
3563
3646
  };
3564
- type ContainerSize$3 = {
3647
+ type ContainerSize$4 = {
3565
3648
  height: number;
3566
3649
  width: number;
3567
3650
  [property: string]: any;
3568
3651
  };
3569
- type FallbackLayers$3 = {
3652
+ type FallbackLayers$4 = {
3570
3653
  is_critical_group: boolean;
3571
- layers: Layer$3[];
3654
+ layers: Layer$4[];
3572
3655
  [property: string]: any;
3573
3656
  };
3574
- type Layer$3 = {
3575
- general_spec: GeneralSpec$3;
3576
- layer_config: LayerConfig$3;
3577
- resource: Resource$3;
3657
+ type Layer$4 = {
3658
+ general_spec: GeneralSpec$4;
3659
+ layer_config: LayerConfig$4;
3660
+ resource: Resource$4;
3578
3661
  visible: boolean;
3579
3662
  [property: string]: any;
3580
3663
  };
3581
- type GeneralSpec$3 = {
3582
- pos_spec: PosSpec$3;
3583
- render_spec: RenderSpec$3;
3584
- size_spec: SizeSpec$3;
3664
+ type GeneralSpec$4 = {
3665
+ pos_spec: PosSpec$4;
3666
+ render_spec: RenderSpec$4;
3667
+ size_spec: SizeSpec$4;
3585
3668
  [property: string]: any;
3586
3669
  };
3587
- type PosSpec$3 = {
3670
+ type PosSpec$4 = {
3588
3671
  axis_x: number;
3589
3672
  axis_y: number;
3590
3673
  coordinate_pos: number;
3591
3674
  [property: string]: any;
3592
3675
  };
3593
- type RenderSpec$3 = {
3676
+ type RenderSpec$4 = {
3594
3677
  opacity: number;
3595
3678
  [property: string]: any;
3596
3679
  };
3597
- type SizeSpec$3 = {
3680
+ type SizeSpec$4 = {
3598
3681
  height: number;
3599
3682
  width: number;
3600
3683
  [property: string]: any;
3601
3684
  };
3602
- type LayerConfig$3 = {
3685
+ type LayerConfig$4 = {
3603
3686
  is_critical?: boolean;
3604
- tags: Tags$3;
3687
+ tags: Tags$4;
3605
3688
  [property: string]: any;
3606
3689
  };
3607
- type Tags$3 = {
3690
+ type Tags$4 = {
3608
3691
  AVATAR_LAYER?: {
3609
3692
  [key: string]: any;
3610
3693
  };
3611
- GENERAL_CFG: GeneralCFG$3;
3694
+ GENERAL_CFG: GeneralCFG$4;
3612
3695
  ICON_LAYER: {
3613
3696
  [key: string]: any;
3614
3697
  };
3615
3698
  [property: string]: any;
3616
3699
  };
3617
- type GeneralCFG$3 = {
3700
+ type GeneralCFG$4 = {
3618
3701
  config_type: number;
3619
- general_config: GeneralConfig$3;
3702
+ general_config: GeneralConfig$4;
3620
3703
  [property: string]: any;
3621
3704
  };
3622
- type GeneralConfig$3 = {
3623
- web_css_style: WebcssStyle$3;
3705
+ type GeneralConfig$4 = {
3706
+ web_css_style: WebcssStyle$4;
3624
3707
  [property: string]: any;
3625
3708
  };
3626
- type WebcssStyle$3 = {
3709
+ type WebcssStyle$4 = {
3627
3710
  'background-color': string;
3628
3711
  border: string;
3629
3712
  borderRadius: string;
3630
3713
  boxSizing: string;
3631
3714
  [property: string]: any;
3632
3715
  };
3633
- type Resource$3 = {
3634
- res_image: ResImage$3;
3716
+ type Resource$4 = {
3717
+ res_image: ResImage$4;
3635
3718
  res_type: number;
3636
3719
  [property: string]: any;
3637
3720
  };
3638
- type ResImage$3 = {
3639
- image_src: ImageSrc$3;
3721
+ type ResImage$4 = {
3722
+ image_src: ImageSrc$4;
3640
3723
  [property: string]: any;
3641
3724
  };
3642
- type ImageSrc$3 = {
3725
+ type ImageSrc$4 = {
3643
3726
  local: number;
3644
3727
  placeholder?: number;
3645
- remote?: Remote$3;
3728
+ remote?: Remote$4;
3646
3729
  src_type: number;
3647
3730
  [property: string]: any;
3648
3731
  };
3649
- type Remote$3 = {
3732
+ type Remote$4 = {
3650
3733
  bfs_style: string;
3651
3734
  url: string;
3652
3735
  [property: string]: any;
3653
3736
  };
3654
- type OfficialVerify$5 = {
3737
+ type OfficialVerify$6 = {
3655
3738
  desc: string;
3656
3739
  type: number;
3657
3740
  [property: string]: any;
@@ -3666,18 +3749,18 @@ type Pendant$5 = {
3666
3749
  pid: number;
3667
3750
  [property: string]: any;
3668
3751
  };
3669
- type Vip$5 = {
3752
+ type Vip$6 = {
3670
3753
  avatar_subscript: number;
3671
3754
  avatar_subscript_url: string;
3672
3755
  due_date: number;
3673
- label: Label$5;
3756
+ label: Label$6;
3674
3757
  nickname_color: string;
3675
3758
  status: number;
3676
3759
  theme_type: number;
3677
3760
  type: number;
3678
3761
  [property: string]: any;
3679
3762
  };
3680
- type Label$5 = {
3763
+ type Label$6 = {
3681
3764
  bg_color: string;
3682
3765
  bg_style: number;
3683
3766
  border_color: string;
@@ -3776,12 +3859,12 @@ type Like$8 = {
3776
3859
  //#region src/types/ReturnDataType/Bilibili/Dynamic/DYNAMIC_TYPE_DRAW.d.ts
3777
3860
  type DynamicTypeDraw = {
3778
3861
  code: number;
3779
- data: DataData$15;
3862
+ data: DataData$16;
3780
3863
  message: string;
3781
3864
  ttl: number;
3782
3865
  [property: string]: any;
3783
3866
  };
3784
- type DataData$15 = {
3867
+ type DataData$16 = {
3785
3868
  item: Item$9;
3786
3869
  [property: string]: any;
3787
3870
  };
@@ -3825,70 +3908,70 @@ type ModuleAuthor$2 = {
3825
3908
  label: string;
3826
3909
  mid: number;
3827
3910
  name: string;
3828
- official_verify: OfficialVerify$4;
3911
+ official_verify: OfficialVerify$5;
3829
3912
  pendant: Pendant$4;
3830
3913
  pub_action: string;
3831
3914
  pub_location_text: string;
3832
3915
  pub_time: string;
3833
3916
  pub_ts: number;
3834
3917
  type: string;
3835
- vip: Vip$4;
3918
+ vip: Vip$5;
3836
3919
  [property: string]: any;
3837
3920
  };
3838
3921
  type Avatar$2 = {
3839
- container_size: ContainerSize$2;
3840
- fallback_layers: FallbackLayers$2;
3922
+ container_size: ContainerSize$3;
3923
+ fallback_layers: FallbackLayers$3;
3841
3924
  mid: string;
3842
3925
  [property: string]: any;
3843
3926
  };
3844
- type ContainerSize$2 = {
3927
+ type ContainerSize$3 = {
3845
3928
  height: number;
3846
3929
  width: number;
3847
3930
  [property: string]: any;
3848
3931
  };
3849
- type FallbackLayers$2 = {
3932
+ type FallbackLayers$3 = {
3850
3933
  is_critical_group: boolean;
3851
- layers: Layer$2[];
3934
+ layers: Layer$3[];
3852
3935
  [property: string]: any;
3853
3936
  };
3854
- type Layer$2 = {
3855
- general_spec: GeneralSpec$2;
3856
- layer_config: LayerConfig$2;
3857
- resource: Resource$2;
3937
+ type Layer$3 = {
3938
+ general_spec: GeneralSpec$3;
3939
+ layer_config: LayerConfig$3;
3940
+ resource: Resource$3;
3858
3941
  visible: boolean;
3859
3942
  [property: string]: any;
3860
3943
  };
3861
- type GeneralSpec$2 = {
3862
- pos_spec: PosSpec$2;
3863
- render_spec: RenderSpec$2;
3864
- size_spec: SizeSpec$2;
3944
+ type GeneralSpec$3 = {
3945
+ pos_spec: PosSpec$3;
3946
+ render_spec: RenderSpec$3;
3947
+ size_spec: SizeSpec$3;
3865
3948
  [property: string]: any;
3866
3949
  };
3867
- type PosSpec$2 = {
3950
+ type PosSpec$3 = {
3868
3951
  axis_x: number;
3869
3952
  axis_y: number;
3870
3953
  coordinate_pos: number;
3871
3954
  [property: string]: any;
3872
3955
  };
3873
- type RenderSpec$2 = {
3956
+ type RenderSpec$3 = {
3874
3957
  opacity: number;
3875
3958
  [property: string]: any;
3876
3959
  };
3877
- type SizeSpec$2 = {
3960
+ type SizeSpec$3 = {
3878
3961
  height: number;
3879
3962
  width: number;
3880
3963
  [property: string]: any;
3881
3964
  };
3882
- type LayerConfig$2 = {
3965
+ type LayerConfig$3 = {
3883
3966
  is_critical?: boolean;
3884
- tags: Tags$2;
3967
+ tags: Tags$3;
3885
3968
  [property: string]: any;
3886
3969
  };
3887
- type Tags$2 = {
3970
+ type Tags$3 = {
3888
3971
  AVATAR_LAYER?: {
3889
3972
  [key: string]: any;
3890
3973
  };
3891
- GENERAL_CFG: GeneralCFG$2;
3974
+ GENERAL_CFG: GeneralCFG$3;
3892
3975
  ICON_LAYER: {
3893
3976
  [key: string]: any;
3894
3977
  };
@@ -3897,39 +3980,39 @@ type Tags$2 = {
3897
3980
  };
3898
3981
  [property: string]: any;
3899
3982
  };
3900
- type GeneralCFG$2 = {
3983
+ type GeneralCFG$3 = {
3901
3984
  config_type: number;
3902
- general_config: GeneralConfig$2;
3985
+ general_config: GeneralConfig$3;
3903
3986
  [property: string]: any;
3904
3987
  };
3905
- type GeneralConfig$2 = {
3906
- web_css_style: WebcssStyle$2;
3988
+ type GeneralConfig$3 = {
3989
+ web_css_style: WebcssStyle$3;
3907
3990
  [property: string]: any;
3908
3991
  };
3909
- type WebcssStyle$2 = {
3992
+ type WebcssStyle$3 = {
3910
3993
  'background-color': string;
3911
3994
  border: string;
3912
3995
  borderRadius: string;
3913
3996
  boxSizing: string;
3914
3997
  [property: string]: any;
3915
3998
  };
3916
- type Resource$2 = {
3917
- res_image: ResImage$2;
3999
+ type Resource$3 = {
4000
+ res_image: ResImage$3;
3918
4001
  res_type: number;
3919
4002
  [property: string]: any;
3920
4003
  };
3921
- type ResImage$2 = {
3922
- image_src: ImageSrc$2;
4004
+ type ResImage$3 = {
4005
+ image_src: ImageSrc$3;
3923
4006
  [property: string]: any;
3924
4007
  };
3925
- type ImageSrc$2 = {
4008
+ type ImageSrc$3 = {
3926
4009
  local: number;
3927
4010
  placeholder?: number;
3928
- remote?: Remote$2;
4011
+ remote?: Remote$3;
3929
4012
  src_type: number;
3930
4013
  [property: string]: any;
3931
4014
  };
3932
- type Remote$2 = {
4015
+ type Remote$3 = {
3933
4016
  bfs_style: string;
3934
4017
  url: string;
3935
4018
  [property: string]: any;
@@ -3963,7 +4046,7 @@ type ColorFormat$5 = {
3963
4046
  start_point: string;
3964
4047
  [property: string]: any;
3965
4048
  };
3966
- type OfficialVerify$4 = {
4049
+ type OfficialVerify$5 = {
3967
4050
  desc: string;
3968
4051
  type: number;
3969
4052
  [property: string]: any;
@@ -3978,18 +4061,18 @@ type Pendant$4 = {
3978
4061
  pid: number;
3979
4062
  [property: string]: any;
3980
4063
  };
3981
- type Vip$4 = {
4064
+ type Vip$5 = {
3982
4065
  avatar_subscript: number;
3983
4066
  avatar_subscript_url: string;
3984
4067
  due_date: number;
3985
- label: Label$4;
4068
+ label: Label$5;
3986
4069
  nickname_color: string;
3987
4070
  status: number;
3988
4071
  theme_type: number;
3989
4072
  type: number;
3990
4073
  [property: string]: any;
3991
4074
  };
3992
- type Label$4 = {
4075
+ type Label$5 = {
3993
4076
  bg_color: string;
3994
4077
  bg_style: number;
3995
4078
  border_color: string;
@@ -4085,12 +4168,12 @@ type Like$7 = {
4085
4168
  //#region src/types/ReturnDataType/Bilibili/Dynamic/Forward/DYNAMIC_TYPE_AV.d.ts
4086
4169
  type DynamicTypeAV$1 = {
4087
4170
  code: number;
4088
- data: DataData$14;
4171
+ data: DataData$15;
4089
4172
  message: string;
4090
4173
  ttl: number;
4091
4174
  [property: string]: any;
4092
4175
  };
4093
- type DataData$14 = {
4176
+ type DataData$15 = {
4094
4177
  item: Item$8;
4095
4178
  [property: string]: any;
4096
4179
  };
@@ -4620,12 +4703,12 @@ type Stat$1 = {
4620
4703
  //#region src/types/ReturnDataType/Bilibili/Dynamic/Forward/DYNAMIC_TYPE_DRAW.d.ts
4621
4704
  type DynamicTypeDraw$1 = {
4622
4705
  code: number;
4623
- data: DataData$13;
4706
+ data: DataData$14;
4624
4707
  message: string;
4625
4708
  ttl: number;
4626
4709
  [property: string]: any;
4627
4710
  };
4628
- type DataData$13 = {
4711
+ type DataData$14 = {
4629
4712
  item: Item$7;
4630
4713
  [property: string]: any;
4631
4714
  };
@@ -5158,12 +5241,12 @@ type SummaryRichTextNode$1 = {
5158
5241
  //#region src/types/ReturnDataType/Bilibili/Dynamic/Forward/DYNAMIC_TYPE_LIVE_RCMD.d.ts
5159
5242
  type DynamicTypeLiveRcmd$1 = {
5160
5243
  code: number;
5161
- data: DataData$12;
5244
+ data: DataData$13;
5162
5245
  message: string;
5163
5246
  ttl: number;
5164
5247
  [property: string]: any;
5165
5248
  };
5166
- type DataData$12 = {
5249
+ type DataData$13 = {
5167
5250
  item: Item$6;
5168
5251
  [property: string]: any;
5169
5252
  };
@@ -5639,12 +5722,12 @@ type LiveRcmd$1 = {
5639
5722
  //#region src/types/ReturnDataType/Bilibili/Dynamic/Forward/DYNAMIC_TYPE_WORD.d.ts
5640
5723
  type DynamicTypeWord$1 = {
5641
5724
  code: number;
5642
- data: DataData$11;
5725
+ data: DataData$12;
5643
5726
  message: string;
5644
5727
  ttl: number;
5645
5728
  [property: string]: any;
5646
5729
  };
5647
- type DataData$11 = {
5730
+ type DataData$12 = {
5648
5731
  item: Item$5;
5649
5732
  [property: string]: any;
5650
5733
  };
@@ -6183,7 +6266,7 @@ type OriginalDynamicItemMap = {
6183
6266
  };
6184
6267
  type ItemBasic = OriginalDynamicItemMap[DynamicType.DRAW]['basic'];
6185
6268
  type ItemModules = OriginalDynamicItemMap[DynamicType.DRAW]['modules'];
6186
- type DataData$10<T extends keyof OriginalDynamicItemMap> = {
6269
+ type DataData$11<T extends keyof OriginalDynamicItemMap> = {
6187
6270
  item: {
6188
6271
  basic: ItemBasic;
6189
6272
  id_str: string;
@@ -6197,7 +6280,7 @@ type DataData$10<T extends keyof OriginalDynamicItemMap> = {
6197
6280
  };
6198
6281
  type DynamicTypeForward<T extends keyof OriginalDynamicItemMap> = {
6199
6282
  code: number;
6200
- data: DataData$10<T>;
6283
+ data: DataData$11<T>;
6201
6284
  message: string;
6202
6285
  ttl: number;
6203
6286
  [property: string]: any;
@@ -6207,12 +6290,12 @@ type DynamicTypeForwardUnion = DynamicTypeForward<DynamicType.AV> | DynamicTypeF
6207
6290
  //#region src/types/ReturnDataType/Bilibili/Dynamic/DYNAMIC_TYPE_LIVE_RCMD.d.ts
6208
6291
  type DynamicTypeLiveRcmd = {
6209
6292
  code: number;
6210
- data: DataData$9;
6293
+ data: DataData$10;
6211
6294
  message: string;
6212
6295
  ttl: number;
6213
6296
  [property: string]: any;
6214
6297
  };
6215
- type DataData$9 = {
6298
+ type DataData$10 = {
6216
6299
  item: Item$4;
6217
6300
  [property: string]: any;
6218
6301
  };
@@ -6255,108 +6338,108 @@ type ModuleAuthor$1 = {
6255
6338
  label: string;
6256
6339
  mid: number;
6257
6340
  name: string;
6258
- official_verify: OfficialVerify$3;
6341
+ official_verify: OfficialVerify$4;
6259
6342
  pendant: Pendant$3;
6260
6343
  pub_action: string;
6261
6344
  pub_location_text: string;
6262
6345
  pub_time: string;
6263
6346
  pub_ts: number;
6264
6347
  type: string;
6265
- vip: Vip$3;
6348
+ vip: Vip$4;
6266
6349
  [property: string]: any;
6267
6350
  };
6268
6351
  type Avatar$1 = {
6269
- container_size: ContainerSize$1;
6270
- fallback_layers: FallbackLayers$1;
6352
+ container_size: ContainerSize$2;
6353
+ fallback_layers: FallbackLayers$2;
6271
6354
  mid: string;
6272
6355
  [property: string]: any;
6273
6356
  };
6274
- type ContainerSize$1 = {
6357
+ type ContainerSize$2 = {
6275
6358
  height: number;
6276
6359
  width: number;
6277
6360
  [property: string]: any;
6278
6361
  };
6279
- type FallbackLayers$1 = {
6362
+ type FallbackLayers$2 = {
6280
6363
  is_critical_group: boolean;
6281
- layers: Layer$1[];
6364
+ layers: Layer$2[];
6282
6365
  [property: string]: any;
6283
6366
  };
6284
- type Layer$1 = {
6285
- general_spec: GeneralSpec$1;
6286
- layer_config: LayerConfig$1;
6287
- resource: Resource$1;
6367
+ type Layer$2 = {
6368
+ general_spec: GeneralSpec$2;
6369
+ layer_config: LayerConfig$2;
6370
+ resource: Resource$2;
6288
6371
  visible: boolean;
6289
6372
  [property: string]: any;
6290
6373
  };
6291
- type GeneralSpec$1 = {
6292
- pos_spec: PosSpec$1;
6293
- render_spec: RenderSpec$1;
6294
- size_spec: SizeSpec$1;
6374
+ type GeneralSpec$2 = {
6375
+ pos_spec: PosSpec$2;
6376
+ render_spec: RenderSpec$2;
6377
+ size_spec: SizeSpec$2;
6295
6378
  [property: string]: any;
6296
6379
  };
6297
- type PosSpec$1 = {
6380
+ type PosSpec$2 = {
6298
6381
  axis_x: number;
6299
6382
  axis_y: number;
6300
6383
  coordinate_pos: number;
6301
6384
  [property: string]: any;
6302
6385
  };
6303
- type RenderSpec$1 = {
6386
+ type RenderSpec$2 = {
6304
6387
  opacity: number;
6305
6388
  [property: string]: any;
6306
6389
  };
6307
- type SizeSpec$1 = {
6390
+ type SizeSpec$2 = {
6308
6391
  height: number;
6309
6392
  width: number;
6310
6393
  [property: string]: any;
6311
6394
  };
6312
- type LayerConfig$1 = {
6395
+ type LayerConfig$2 = {
6313
6396
  is_critical?: boolean;
6314
- tags: Tags$1;
6397
+ tags: Tags$2;
6315
6398
  [property: string]: any;
6316
6399
  };
6317
- type Tags$1 = {
6400
+ type Tags$2 = {
6318
6401
  AVATAR_LAYER?: {
6319
6402
  [key: string]: any;
6320
6403
  };
6321
- GENERAL_CFG: GeneralCFG$1;
6404
+ GENERAL_CFG: GeneralCFG$2;
6322
6405
  ICON_LAYER: {
6323
6406
  [key: string]: any;
6324
6407
  };
6325
6408
  [property: string]: any;
6326
6409
  };
6327
- type GeneralCFG$1 = {
6410
+ type GeneralCFG$2 = {
6328
6411
  config_type: number;
6329
- general_config: GeneralConfig$1;
6412
+ general_config: GeneralConfig$2;
6330
6413
  [property: string]: any;
6331
6414
  };
6332
- type GeneralConfig$1 = {
6333
- web_css_style: WebcssStyle$1;
6415
+ type GeneralConfig$2 = {
6416
+ web_css_style: WebcssStyle$2;
6334
6417
  [property: string]: any;
6335
6418
  };
6336
- type WebcssStyle$1 = {
6419
+ type WebcssStyle$2 = {
6337
6420
  'background-color': string;
6338
6421
  border: string;
6339
6422
  borderRadius: string;
6340
6423
  boxSizing: string;
6341
6424
  [property: string]: any;
6342
6425
  };
6343
- type Resource$1 = {
6344
- res_image: ResImage$1;
6426
+ type Resource$2 = {
6427
+ res_image: ResImage$2;
6345
6428
  res_type: number;
6346
6429
  [property: string]: any;
6347
6430
  };
6348
- type ResImage$1 = {
6349
- image_src: ImageSrc$1;
6431
+ type ResImage$2 = {
6432
+ image_src: ImageSrc$2;
6350
6433
  [property: string]: any;
6351
6434
  };
6352
- type ImageSrc$1 = {
6435
+ type ImageSrc$2 = {
6353
6436
  local: number;
6354
6437
  placeholder?: number;
6355
- remote?: Remote$1;
6438
+ remote?: Remote$2;
6356
6439
  src_type: number;
6357
6440
  [property: string]: any;
6358
6441
  };
6359
- type Remote$1 = {
6442
+ type Remote$2 = {
6360
6443
  bfs_style: string;
6361
6444
  url: string;
6362
6445
  [property: string]: any;
@@ -6390,7 +6473,7 @@ type ColorFormat$1 = {
6390
6473
  start_point: string;
6391
6474
  [property: string]: any;
6392
6475
  };
6393
- type OfficialVerify$3 = {
6476
+ type OfficialVerify$4 = {
6394
6477
  desc: string;
6395
6478
  type: number;
6396
6479
  [property: string]: any;
@@ -6405,18 +6488,18 @@ type Pendant$3 = {
6405
6488
  pid: number;
6406
6489
  [property: string]: any;
6407
6490
  };
6408
- type Vip$3 = {
6491
+ type Vip$4 = {
6409
6492
  avatar_subscript: number;
6410
6493
  avatar_subscript_url: string;
6411
6494
  due_date: number;
6412
- label: Label$3;
6495
+ label: Label$4;
6413
6496
  nickname_color: string;
6414
6497
  status: number;
6415
6498
  theme_type: number;
6416
6499
  type: number;
6417
6500
  [property: string]: any;
6418
6501
  };
6419
- type Label$3 = {
6502
+ type Label$4 = {
6420
6503
  bg_color: string;
6421
6504
  bg_style: number;
6422
6505
  border_color: string;
@@ -6484,12 +6567,12 @@ type Like$2 = {
6484
6567
  //#region src/types/ReturnDataType/Bilibili/Dynamic/DYNAMIC_TYPE_WORD.d.ts
6485
6568
  type DynamicTypeWord = {
6486
6569
  code: number;
6487
- data: DataData$8;
6570
+ data: DataData$9;
6488
6571
  message: string;
6489
6572
  ttl: number;
6490
6573
  [property: string]: any;
6491
6574
  };
6492
- type DataData$8 = {
6575
+ type DataData$9 = {
6493
6576
  item: Item$3;
6494
6577
  [property: string]: any;
6495
6578
  };
@@ -6533,108 +6616,108 @@ type ModuleAuthor = {
6533
6616
  label: string;
6534
6617
  mid: number;
6535
6618
  name: string;
6536
- official_verify: OfficialVerify$2;
6619
+ official_verify: OfficialVerify$3;
6537
6620
  pendant: Pendant$2;
6538
6621
  pub_action: string;
6539
6622
  pub_location_text: string;
6540
6623
  pub_time: string;
6541
6624
  pub_ts: number;
6542
6625
  type: string;
6543
- vip: Vip$2;
6626
+ vip: Vip$3;
6544
6627
  [property: string]: any;
6545
6628
  };
6546
6629
  type Avatar = {
6547
- container_size: ContainerSize;
6548
- fallback_layers: FallbackLayers;
6630
+ container_size: ContainerSize$1;
6631
+ fallback_layers: FallbackLayers$1;
6549
6632
  mid: string;
6550
6633
  [property: string]: any;
6551
6634
  };
6552
- type ContainerSize = {
6635
+ type ContainerSize$1 = {
6553
6636
  height: number;
6554
6637
  width: number;
6555
6638
  [property: string]: any;
6556
6639
  };
6557
- type FallbackLayers = {
6640
+ type FallbackLayers$1 = {
6558
6641
  is_critical_group: boolean;
6559
- layers: Layer[];
6642
+ layers: Layer$1[];
6560
6643
  [property: string]: any;
6561
6644
  };
6562
- type Layer = {
6563
- general_spec: GeneralSpec;
6564
- layer_config: LayerConfig;
6565
- resource: Resource;
6645
+ type Layer$1 = {
6646
+ general_spec: GeneralSpec$1;
6647
+ layer_config: LayerConfig$1;
6648
+ resource: Resource$1;
6566
6649
  visible: boolean;
6567
6650
  [property: string]: any;
6568
6651
  };
6569
- type GeneralSpec = {
6570
- pos_spec: PosSpec;
6571
- render_spec: RenderSpec;
6572
- size_spec: SizeSpec;
6652
+ type GeneralSpec$1 = {
6653
+ pos_spec: PosSpec$1;
6654
+ render_spec: RenderSpec$1;
6655
+ size_spec: SizeSpec$1;
6573
6656
  [property: string]: any;
6574
6657
  };
6575
- type PosSpec = {
6658
+ type PosSpec$1 = {
6576
6659
  axis_x: number;
6577
6660
  axis_y: number;
6578
6661
  coordinate_pos: number;
6579
6662
  [property: string]: any;
6580
6663
  };
6581
- type RenderSpec = {
6664
+ type RenderSpec$1 = {
6582
6665
  opacity: number;
6583
6666
  [property: string]: any;
6584
6667
  };
6585
- type SizeSpec = {
6668
+ type SizeSpec$1 = {
6586
6669
  height: number;
6587
6670
  width: number;
6588
6671
  [property: string]: any;
6589
6672
  };
6590
- type LayerConfig = {
6673
+ type LayerConfig$1 = {
6591
6674
  is_critical?: boolean;
6592
- tags: Tags;
6675
+ tags: Tags$1;
6593
6676
  [property: string]: any;
6594
6677
  };
6595
- type Tags = {
6678
+ type Tags$1 = {
6596
6679
  AVATAR_LAYER?: {
6597
6680
  [key: string]: any;
6598
6681
  };
6599
- GENERAL_CFG: GeneralCFG;
6682
+ GENERAL_CFG: GeneralCFG$1;
6600
6683
  ICON_LAYER: {
6601
6684
  [key: string]: any;
6602
6685
  };
6603
6686
  [property: string]: any;
6604
6687
  };
6605
- type GeneralCFG = {
6688
+ type GeneralCFG$1 = {
6606
6689
  config_type: number;
6607
- general_config: GeneralConfig;
6690
+ general_config: GeneralConfig$1;
6608
6691
  [property: string]: any;
6609
6692
  };
6610
- type GeneralConfig = {
6611
- web_css_style: WebcssStyle;
6693
+ type GeneralConfig$1 = {
6694
+ web_css_style: WebcssStyle$1;
6612
6695
  [property: string]: any;
6613
6696
  };
6614
- type WebcssStyle = {
6697
+ type WebcssStyle$1 = {
6615
6698
  'background-color': string;
6616
6699
  border: string;
6617
6700
  borderRadius: string;
6618
6701
  boxSizing: string;
6619
6702
  [property: string]: any;
6620
6703
  };
6621
- type Resource = {
6622
- res_image: ResImage;
6704
+ type Resource$1 = {
6705
+ res_image: ResImage$1;
6623
6706
  res_type: number;
6624
6707
  [property: string]: any;
6625
6708
  };
6626
- type ResImage = {
6627
- image_src: ImageSrc;
6709
+ type ResImage$1 = {
6710
+ image_src: ImageSrc$1;
6628
6711
  [property: string]: any;
6629
6712
  };
6630
- type ImageSrc = {
6713
+ type ImageSrc$1 = {
6631
6714
  local: number;
6632
6715
  placeholder?: number;
6633
- remote?: Remote;
6716
+ remote?: Remote$1;
6634
6717
  src_type: number;
6635
6718
  [property: string]: any;
6636
6719
  };
6637
- type Remote = {
6720
+ type Remote$1 = {
6638
6721
  bfs_style: string;
6639
6722
  url: string;
6640
6723
  [property: string]: any;
@@ -6668,7 +6751,7 @@ type ColorFormat = {
6668
6751
  start_point: string;
6669
6752
  [property: string]: any;
6670
6753
  };
6671
- type OfficialVerify$2 = {
6754
+ type OfficialVerify$3 = {
6672
6755
  desc: string;
6673
6756
  type: number;
6674
6757
  [property: string]: any;
@@ -6683,18 +6766,18 @@ type Pendant$2 = {
6683
6766
  pid: number;
6684
6767
  [property: string]: any;
6685
6768
  };
6686
- type Vip$2 = {
6769
+ type Vip$3 = {
6687
6770
  avatar_subscript: number;
6688
6771
  avatar_subscript_url: string;
6689
6772
  due_date: number;
6690
- label: Label$2;
6773
+ label: Label$3;
6691
6774
  nickname_color: string;
6692
6775
  status: number;
6693
6776
  theme_type: number;
6694
6777
  type: number;
6695
6778
  [property: string]: any;
6696
6779
  };
6697
- type Label$2 = {
6780
+ type Label$3 = {
6698
6781
  bg_color: string;
6699
6782
  bg_style: number;
6700
6783
  border_color: string;
@@ -6929,18 +7012,18 @@ type Desc = {
6929
7012
  type UserProfile = {
6930
7013
  card: UserProfileCard;
6931
7014
  info: Info$1;
6932
- level_info: LevelInfo$1;
7015
+ level_info: LevelInfo$2;
6933
7016
  pendant: Pendant$1;
6934
7017
  rank: string;
6935
7018
  sign: string;
6936
- vip: Vip$1;
7019
+ vip: Vip$2;
6937
7020
  [property: string]: any;
6938
7021
  };
6939
7022
  type UserProfileCard = {
6940
- official_verify: OfficialVerify$1;
7023
+ official_verify: OfficialVerify$2;
6941
7024
  [property: string]: any;
6942
7025
  };
6943
- type OfficialVerify$1 = {
7026
+ type OfficialVerify$2 = {
6944
7027
  type: number;
6945
7028
  [property: string]: any;
6946
7029
  };
@@ -6950,7 +7033,7 @@ type Info$1 = {
6950
7033
  uname: string;
6951
7034
  [property: string]: any;
6952
7035
  };
6953
- type LevelInfo$1 = {
7036
+ type LevelInfo$2 = {
6954
7037
  current_exp: number;
6955
7038
  current_level: number;
6956
7039
  current_min: number;
@@ -6966,12 +7049,12 @@ type Pendant$1 = {
6966
7049
  pid: number;
6967
7050
  [property: string]: any;
6968
7051
  };
6969
- type Vip$1 = {
7052
+ type Vip$2 = {
6970
7053
  accessStatus: number;
6971
7054
  avatar_subscript: number;
6972
7055
  avatar_subscript_url: string;
6973
7056
  dueRemark: string;
6974
- label: Label$1;
7057
+ label: Label$2;
6975
7058
  nickname_color: string;
6976
7059
  role: number;
6977
7060
  themeType: number;
@@ -6981,7 +7064,7 @@ type Vip$1 = {
6981
7064
  vipType: number;
6982
7065
  [property: string]: any;
6983
7066
  };
6984
- type Label$1 = {
7067
+ type Label$2 = {
6985
7068
  bg_color: string;
6986
7069
  bg_style: number;
6987
7070
  border_color: string;
@@ -7383,7 +7466,7 @@ type UserGarb = {
7383
7466
  //#region src/types/ReturnDataType/Bilibili/UserDynamic.d.ts
7384
7467
  type BiliUserDynamic = {
7385
7468
  code: number;
7386
- data: DataData$7;
7469
+ data: DataData$8;
7387
7470
  message: string;
7388
7471
  ttl: number;
7389
7472
  [property: string]: any;
@@ -7402,7 +7485,7 @@ type DynamicTypeItemMap = {
7402
7485
  [DynamicType.FORWARD]: ForwardItem;
7403
7486
  [DynamicType.ARTICLE]: ArticleItem;
7404
7487
  };
7405
- type DataData$7<T extends DynamicType = DynamicType> = {
7488
+ type DataData$8<T extends DynamicType = DynamicType> = {
7406
7489
  has_more: boolean;
7407
7490
  items: DynamicTypeItemMap[T][];
7408
7491
  offset: string;
@@ -7468,13 +7551,13 @@ type Card = {
7468
7551
  fans: number;
7469
7552
  friend: number;
7470
7553
  is_senior_member: number;
7471
- level_info: LevelInfo;
7554
+ level_info: LevelInfo$1;
7472
7555
  mid: string;
7473
7556
  name: string;
7474
7557
  name_render: null;
7475
- nameplate: Nameplate;
7558
+ nameplate: Nameplate$1;
7476
7559
  Official: Official;
7477
- official_verify: OfficialVerify;
7560
+ official_verify: OfficialVerify$1;
7478
7561
  pendant: Pendant;
7479
7562
  place: string;
7480
7563
  rank: string;
@@ -7482,7 +7565,7 @@ type Card = {
7482
7565
  sex: string;
7483
7566
  sign: string;
7484
7567
  spacesta: number;
7485
- vip: Vip;
7568
+ vip: Vip$1;
7486
7569
  [property: string]: any;
7487
7570
  };
7488
7571
  type Official = {
@@ -7492,14 +7575,14 @@ type Official = {
7492
7575
  type: number;
7493
7576
  [property: string]: any;
7494
7577
  };
7495
- type LevelInfo = {
7578
+ type LevelInfo$1 = {
7496
7579
  current_exp: number;
7497
7580
  current_level: number;
7498
7581
  current_min: number;
7499
7582
  next_exp: number;
7500
7583
  [property: string]: any;
7501
7584
  };
7502
- type Nameplate = {
7585
+ type Nameplate$1 = {
7503
7586
  condition: string;
7504
7587
  image: string;
7505
7588
  image_small: string;
@@ -7508,7 +7591,7 @@ type Nameplate = {
7508
7591
  nid: number;
7509
7592
  [property: string]: any;
7510
7593
  };
7511
- type OfficialVerify = {
7594
+ type OfficialVerify$1 = {
7512
7595
  desc: string;
7513
7596
  type: number;
7514
7597
  [property: string]: any;
@@ -7523,12 +7606,12 @@ type Pendant = {
7523
7606
  pid: number;
7524
7607
  [property: string]: any;
7525
7608
  };
7526
- type Vip = {
7609
+ type Vip$1 = {
7527
7610
  avatar_icon: AvatarIcon;
7528
7611
  avatar_subscript: number;
7529
7612
  avatar_subscript_url: string;
7530
7613
  due_date: number;
7531
- label: Label;
7614
+ label: Label$1;
7532
7615
  nickname_color: string;
7533
7616
  role: number;
7534
7617
  status: number;
@@ -7552,7 +7635,7 @@ type IconResource = {
7552
7635
  url: string;
7553
7636
  [property: string]: any;
7554
7637
  };
7555
- type Label = {
7638
+ type Label$1 = {
7556
7639
  bg_color: string;
7557
7640
  bg_style: number;
7558
7641
  border_color: string;
@@ -7745,35 +7828,35 @@ type SupportFormat = {
7745
7828
  //#region src/types/ReturnDataType/Bilibili/WorkComments.d.ts
7746
7829
  type BiliWorkComments = {
7747
7830
  code: number;
7748
- data: DataData$6;
7831
+ data: DataData$7;
7749
7832
  message: string;
7750
7833
  ttl: number;
7751
7834
  [property: string]: any;
7752
7835
  };
7753
- type DataData$6 = {
7836
+ type DataData$7 = {
7754
7837
  assist: number;
7755
7838
  blacklist: number;
7756
7839
  callbacks: {
7757
7840
  [key: string]: any;
7758
7841
  };
7759
- cm_info: CmInfo;
7760
- config: Config;
7761
- control: Control;
7762
- cursor: Cursor;
7763
- effects: Effects;
7842
+ cm_info: CmInfo$1;
7843
+ config: Config$1;
7844
+ control: Control$1;
7845
+ cursor: Cursor$1;
7846
+ effects: Effects$1;
7764
7847
  note: number;
7765
7848
  replies: DataReply[];
7766
- top: Top;
7849
+ top: Top$1;
7767
7850
  top_replies: TopReply[];
7768
7851
  upper: DataUpper;
7769
7852
  vote: number;
7770
7853
  [property: string]: any;
7771
7854
  };
7772
- type CmInfo = {
7773
- ads: Ads;
7855
+ type CmInfo$1 = {
7856
+ ads: Ads$1;
7774
7857
  [property: string]: any;
7775
7858
  };
7776
- type Ads = {
7859
+ type Ads$1 = {
7777
7860
  4765: The4765[];
7778
7861
  [property: string]: any;
7779
7862
  };
@@ -7812,13 +7895,13 @@ type The4765 = {
7812
7895
  url?: string;
7813
7896
  [property: string]: any;
7814
7897
  };
7815
- type Config = {
7898
+ type Config$1 = {
7816
7899
  read_only: boolean;
7817
7900
  show_up_flag: boolean;
7818
7901
  showtopic: number;
7819
7902
  [property: string]: any;
7820
7903
  };
7821
- type Control = {
7904
+ type Control$1 = {
7822
7905
  answer_guide_android_url: string;
7823
7906
  answer_guide_icon_url: string;
7824
7907
  answer_guide_ios_url: string;
@@ -7840,7 +7923,7 @@ type Control = {
7840
7923
  web_selection: boolean;
7841
7924
  [property: string]: any;
7842
7925
  };
7843
- type Cursor = {
7926
+ type Cursor$1 = {
7844
7927
  all_count: number;
7845
7928
  is_begin: boolean;
7846
7929
  is_end: boolean;
@@ -7848,17 +7931,17 @@ type Cursor = {
7848
7931
  mode_text: string;
7849
7932
  name: string;
7850
7933
  next: number;
7851
- pagination_reply: PaginationReply;
7934
+ pagination_reply: PaginationReply$1;
7852
7935
  prev: number;
7853
7936
  session_id: string;
7854
7937
  support_mode: number[];
7855
7938
  [property: string]: any;
7856
7939
  };
7857
- type PaginationReply = {
7940
+ type PaginationReply$1 = {
7858
7941
  next_offset: string;
7859
7942
  [property: string]: any;
7860
7943
  };
7861
- type Effects = {
7944
+ type Effects$1 = {
7862
7945
  preloading: string;
7863
7946
  [property: string]: any;
7864
7947
  };
@@ -8390,7 +8473,7 @@ type FluffyUpAction = {
8390
8473
  reply: boolean;
8391
8474
  [property: string]: any;
8392
8475
  };
8393
- type Top = {
8476
+ type Top$1 = {
8394
8477
  admin: null;
8395
8478
  upper: TopUpper;
8396
8479
  vote: null;
@@ -9287,153 +9370,578 @@ type TopReplyReply = {
9287
9370
  up_action?: StickyUpAction;
9288
9371
  [property: string]: any;
9289
9372
  };
9290
- type StickyContent = {
9373
+ type StickyContent = {
9374
+ jump_url: {
9375
+ [key: string]: any;
9376
+ };
9377
+ max_line: number;
9378
+ members: string[];
9379
+ message: string;
9380
+ [property: string]: any;
9381
+ };
9382
+ type StickyFolder = {
9383
+ has_folded: boolean;
9384
+ is_folded: boolean;
9385
+ rule: string;
9386
+ [property: string]: any;
9387
+ };
9388
+ type StickyMember = {
9389
+ avatar: string;
9390
+ avatar_item: IndecentAvatarItem;
9391
+ contract_desc: string;
9392
+ face_nft_new: number;
9393
+ fans_detail: null;
9394
+ is_contractor: boolean;
9395
+ is_senior_member: number;
9396
+ level_info: IndecentLevelInfo;
9397
+ mid: string;
9398
+ nameplate: IndecentNameplate;
9399
+ nft_interaction: null;
9400
+ official_verify: IndecentOfficialVerify;
9401
+ pendant: IndecentPendant;
9402
+ rank: string;
9403
+ senior: {
9404
+ [key: string]: any;
9405
+ };
9406
+ sex: string;
9407
+ sign: string;
9408
+ uname: string;
9409
+ user_sailing: IndecentUserSailing;
9410
+ user_sailing_v2: {
9411
+ [key: string]: any;
9412
+ };
9413
+ vip: IndecentVip;
9414
+ [property: string]: any;
9415
+ };
9416
+ type IndecentAvatarItem = {
9417
+ container_size: IndecentContainerSize;
9418
+ fallback_layers: IndecentFallbackLayers;
9419
+ mid: string;
9420
+ [property: string]: any;
9421
+ };
9422
+ type IndecentContainerSize = {
9423
+ height: number;
9424
+ width: number;
9425
+ [property: string]: any;
9426
+ };
9427
+ type IndecentFallbackLayers = {
9428
+ is_critical_group: boolean;
9429
+ layers: IndecentLayer[];
9430
+ [property: string]: any;
9431
+ };
9432
+ type IndecentLayer = {
9433
+ general_spec: IndecentGeneralSpec;
9434
+ layer_config: IndecentLayerConfig;
9435
+ resource: IndecentResource;
9436
+ visible: boolean;
9437
+ [property: string]: any;
9438
+ };
9439
+ type IndecentGeneralSpec = {
9440
+ pos_spec: IndecentPosSpec;
9441
+ render_spec: IndecentRenderSpec;
9442
+ size_spec: IndecentSizeSpec;
9443
+ [property: string]: any;
9444
+ };
9445
+ type IndecentPosSpec = {
9446
+ axis_x: number;
9447
+ axis_y: number;
9448
+ coordinate_pos: number;
9449
+ [property: string]: any;
9450
+ };
9451
+ type IndecentRenderSpec = {
9452
+ opacity: number;
9453
+ [property: string]: any;
9454
+ };
9455
+ type IndecentSizeSpec = {
9456
+ height: number;
9457
+ width: number;
9458
+ [property: string]: any;
9459
+ };
9460
+ type IndecentLayerConfig = {
9461
+ is_critical?: boolean;
9462
+ tags: IndecentTags;
9463
+ [property: string]: any;
9464
+ };
9465
+ type IndecentTags = {
9466
+ AVATAR_LAYER?: {
9467
+ [key: string]: any;
9468
+ };
9469
+ GENERAL_CFG: IndecentGENERALCFG;
9470
+ ICON_LAYER: {
9471
+ [key: string]: any;
9472
+ };
9473
+ [property: string]: any;
9474
+ };
9475
+ type IndecentGENERALCFG = {
9476
+ config_type: number;
9477
+ general_config: IndecentGeneralConfig;
9478
+ [property: string]: any;
9479
+ };
9480
+ type IndecentGeneralConfig = {
9481
+ web_css_style: IndecentWebcssStyle;
9482
+ [property: string]: any;
9483
+ };
9484
+ type IndecentWebcssStyle = {
9485
+ 'background-color': string;
9486
+ border: string;
9487
+ borderRadius: string;
9488
+ boxSizing: string;
9489
+ [property: string]: any;
9490
+ };
9491
+ type IndecentResource = {
9492
+ res_image: IndecentResImage;
9493
+ res_type: number;
9494
+ [property: string]: any;
9495
+ };
9496
+ type IndecentResImage = {
9497
+ image_src: IndecentImageSrc;
9498
+ [property: string]: any;
9499
+ };
9500
+ type IndecentImageSrc = {
9501
+ local: number;
9502
+ placeholder?: number;
9503
+ remote?: IndecentRemote;
9504
+ src_type: number;
9505
+ [property: string]: any;
9506
+ };
9507
+ type IndecentRemote = {
9508
+ bfs_style: string;
9509
+ url: string;
9510
+ [property: string]: any;
9511
+ };
9512
+ type IndecentLevelInfo = {
9513
+ current_exp: number;
9514
+ current_level: number;
9515
+ current_min: number;
9516
+ next_exp: number;
9517
+ [property: string]: any;
9518
+ };
9519
+ type IndecentNameplate = {
9520
+ condition: string;
9521
+ image: string;
9522
+ image_small: string;
9523
+ level: string;
9524
+ name: string;
9525
+ nid: number;
9526
+ [property: string]: any;
9527
+ };
9528
+ type IndecentOfficialVerify = {
9529
+ desc: string;
9530
+ type: number;
9531
+ [property: string]: any;
9532
+ };
9533
+ type IndecentPendant = {
9534
+ expire: number;
9535
+ image: string;
9536
+ image_enhance: string;
9537
+ image_enhance_frame: string;
9538
+ n_pid: number;
9539
+ name: string;
9540
+ pid: number;
9541
+ [property: string]: any;
9542
+ };
9543
+ type IndecentUserSailing = {
9544
+ cardbg: null;
9545
+ cardbg_with_focus: null;
9546
+ pendant: null;
9547
+ [property: string]: any;
9548
+ };
9549
+ type IndecentVip = {
9550
+ accessStatus: number;
9551
+ avatar_subscript: number;
9552
+ dueRemark: string;
9553
+ label: IndecentLabel;
9554
+ nickname_color: string;
9555
+ themeType: number;
9556
+ vipDueDate: number;
9557
+ vipStatus: number;
9558
+ vipStatusWarn: string;
9559
+ vipType: number;
9560
+ [property: string]: any;
9561
+ };
9562
+ type IndecentLabel = {
9563
+ bg_color: string;
9564
+ bg_style: number;
9565
+ border_color: string;
9566
+ img_label_uri_hans: string;
9567
+ img_label_uri_hans_static: string;
9568
+ img_label_uri_hant: string;
9569
+ img_label_uri_hant_static: string;
9570
+ label_theme: string;
9571
+ path: string;
9572
+ text: string;
9573
+ text_color: string;
9574
+ use_img_label: boolean;
9575
+ [property: string]: any;
9576
+ };
9577
+ type StickyReplyControl = {
9578
+ location: string;
9579
+ max_line: number;
9580
+ time_desc: string;
9581
+ translation_switch: number;
9582
+ [property: string]: any;
9583
+ };
9584
+ type StickyUpAction = {
9585
+ like: boolean;
9586
+ reply: boolean;
9587
+ [property: string]: any;
9588
+ };
9589
+ type TopReplyReplyControl = {
9590
+ cm_recommend_component: string;
9591
+ is_up_top: boolean;
9592
+ location: string;
9593
+ max_line: number;
9594
+ sub_reply_entry_text: string;
9595
+ sub_reply_title_text: string;
9596
+ time_desc: string;
9597
+ translation_switch: number;
9598
+ up_reply: boolean;
9599
+ [property: string]: any;
9600
+ };
9601
+ type TopReplyUpAction = {
9602
+ like: boolean;
9603
+ reply: boolean;
9604
+ [property: string]: any;
9605
+ };
9606
+ type DataUpper = {
9607
+ mid: number;
9608
+ [property: string]: any;
9609
+ };
9610
+ //#endregion
9611
+ //#region src/types/ReturnDataType/Bilibili/BiliCommentReply.d.ts
9612
+ type BiliCommentReply = {
9613
+ code: number;
9614
+ data: DataData$6;
9615
+ message: string;
9616
+ ttl: number;
9617
+ [property: string]: any;
9618
+ };
9619
+ type DataData$6 = {
9620
+ assist: number;
9621
+ blacklist: number;
9622
+ callbacks: {
9623
+ [key: string]: any;
9624
+ };
9625
+ cm_info: CmInfo;
9626
+ config: Config;
9627
+ control: Control;
9628
+ cursor: Cursor;
9629
+ effects: Effects;
9630
+ note: number;
9631
+ replies: Reply[];
9632
+ top: Top;
9633
+ top_replies: string[];
9634
+ upper: Upper;
9635
+ vote: number;
9636
+ [property: string]: any;
9637
+ };
9638
+ type CmInfo = {
9639
+ ads: Ads;
9640
+ [property: string]: any;
9641
+ };
9642
+ type Ads = {
9643
+ 4763: The4763[];
9644
+ [property: string]: any;
9645
+ };
9646
+ type The4763 = {
9647
+ activity_type?: number;
9648
+ ad_cb?: string;
9649
+ ad_desc?: string;
9650
+ adver_name?: string;
9651
+ agency?: string;
9652
+ area?: number;
9653
+ cm_mark?: number;
9654
+ contract_id?: string;
9655
+ creative_id?: number;
9656
+ creative_type?: number;
9657
+ epid?: number;
9658
+ id?: number;
9659
+ intro?: string;
9660
+ is_ad?: boolean;
9661
+ is_ad_loc?: boolean;
9662
+ label?: string;
9663
+ litpic?: string;
9664
+ mid?: string;
9665
+ name?: string;
9666
+ null_frame?: boolean;
9667
+ pic?: string;
9668
+ pic_main_color?: string;
9669
+ pos_num?: number;
9670
+ request_id?: string;
9671
+ server_type?: number;
9672
+ show_url?: string;
9673
+ src_id?: number;
9674
+ stime?: number;
9675
+ style?: number;
9676
+ sub_title?: string;
9677
+ title?: string;
9678
+ url?: string;
9679
+ [property: string]: any;
9680
+ };
9681
+ type Config = {
9682
+ read_only: boolean;
9683
+ show_up_flag: boolean;
9684
+ showtopic: number;
9685
+ [property: string]: any;
9686
+ };
9687
+ type Control = {
9688
+ answer_guide_android_url: string;
9689
+ answer_guide_icon_url: string;
9690
+ answer_guide_ios_url: string;
9691
+ answer_guide_text: string;
9692
+ bg_text: string;
9693
+ child_input_text: string;
9694
+ disable_jump_emote: boolean;
9695
+ empty_page: null;
9696
+ enable_charged: boolean;
9697
+ enable_cm_biz_helper: boolean;
9698
+ giveup_input_text: string;
9699
+ input_disable: boolean;
9700
+ preload_resources: null;
9701
+ root_input_text: string;
9702
+ screenshot_icon_state: number;
9703
+ show_text: string;
9704
+ show_type: number;
9705
+ upload_picture_icon_state: number;
9706
+ web_selection: boolean;
9707
+ [property: string]: any;
9708
+ };
9709
+ type Cursor = {
9710
+ all_count: number;
9711
+ is_begin: boolean;
9712
+ is_end: boolean;
9713
+ mode: number;
9714
+ mode_text: string;
9715
+ name: string;
9716
+ next: number;
9717
+ pagination_reply: PaginationReply;
9718
+ prev: number;
9719
+ session_id: string;
9720
+ support_mode: number[];
9721
+ [property: string]: any;
9722
+ };
9723
+ type PaginationReply = {
9724
+ next_offset: string;
9725
+ [property: string]: any;
9726
+ };
9727
+ type Effects = {
9728
+ preloading: string;
9729
+ [property: string]: any;
9730
+ };
9731
+ type Reply = {
9732
+ action: number;
9733
+ assist: number;
9734
+ attr: number;
9735
+ content: Content;
9736
+ count: number;
9737
+ ctime: number;
9738
+ dialog: number;
9739
+ dialog_str: string;
9740
+ dynamic_id: number;
9741
+ dynamic_id_str: string;
9742
+ fansgrade: number;
9743
+ folder: Folder;
9744
+ invisible: boolean;
9745
+ like: number;
9746
+ member: Member;
9747
+ mid: number;
9748
+ mid_str: string;
9749
+ note_cvid_str: string;
9750
+ oid: number;
9751
+ oid_str: string;
9752
+ parent: number;
9753
+ parent_str: string;
9754
+ rcount: number;
9755
+ replies: string[];
9756
+ reply_control: ReplyControl;
9757
+ root: number;
9758
+ root_str: string;
9759
+ rpid: number;
9760
+ rpid_str: string;
9761
+ state: number;
9762
+ track_info: string;
9763
+ type: number;
9764
+ up_action: UpAction;
9765
+ [property: string]: any;
9766
+ };
9767
+ type Content = {
9768
+ emote?: Record<string, BiliEmojiList['data']['packages'][number]>;
9291
9769
  jump_url: {
9292
9770
  [key: string]: any;
9293
9771
  };
9294
9772
  max_line: number;
9295
9773
  members: string[];
9296
9774
  message: string;
9775
+ picture_scale: number;
9776
+ pictures: Picture$1[];
9297
9777
  [property: string]: any;
9298
9778
  };
9299
- type StickyFolder = {
9779
+ type Picture$1 = {
9780
+ img_height: number;
9781
+ img_size: number;
9782
+ img_src: string;
9783
+ img_width: number;
9784
+ play_gif_thumbnail?: boolean;
9785
+ top_right_icon?: string;
9786
+ [property: string]: any;
9787
+ };
9788
+ type Folder = {
9300
9789
  has_folded: boolean;
9301
9790
  is_folded: boolean;
9302
9791
  rule: string;
9303
9792
  [property: string]: any;
9304
9793
  };
9305
- type StickyMember = {
9794
+ type Member = {
9306
9795
  avatar: string;
9307
- avatar_item: IndecentAvatarItem;
9796
+ avatar_item: AvatarItem;
9308
9797
  contract_desc: string;
9309
9798
  face_nft_new: number;
9310
- fans_detail: null;
9799
+ fans_detail: null | FansDetail;
9311
9800
  is_contractor: boolean;
9312
9801
  is_senior_member: number;
9313
- level_info: IndecentLevelInfo;
9802
+ level_info: LevelInfo;
9314
9803
  mid: string;
9315
- nameplate: IndecentNameplate;
9804
+ nameplate: Nameplate;
9316
9805
  nft_interaction: null;
9317
- official_verify: IndecentOfficialVerify;
9318
- pendant: IndecentPendant;
9806
+ official_verify: OfficialVerify;
9807
+ pendant: MemberPendant;
9319
9808
  rank: string;
9320
- senior: {
9321
- [key: string]: any;
9322
- };
9809
+ senior: Senior;
9323
9810
  sex: string;
9324
9811
  sign: string;
9325
9812
  uname: string;
9326
- user_sailing: IndecentUserSailing;
9327
- user_sailing_v2: {
9328
- [key: string]: any;
9329
- };
9330
- vip: IndecentVip;
9813
+ user_sailing: UserSailing;
9814
+ user_sailing_v2: UserSailingV2;
9815
+ vip: Vip;
9331
9816
  [property: string]: any;
9332
9817
  };
9333
- type IndecentAvatarItem = {
9334
- container_size: IndecentContainerSize;
9335
- fallback_layers: IndecentFallbackLayers;
9818
+ type AvatarItem = {
9819
+ container_size: ContainerSize;
9820
+ fallback_layers: FallbackLayers;
9336
9821
  mid: string;
9337
9822
  [property: string]: any;
9338
9823
  };
9339
- type IndecentContainerSize = {
9824
+ type ContainerSize = {
9340
9825
  height: number;
9341
9826
  width: number;
9342
9827
  [property: string]: any;
9343
9828
  };
9344
- type IndecentFallbackLayers = {
9829
+ type FallbackLayers = {
9345
9830
  is_critical_group: boolean;
9346
- layers: IndecentLayer[];
9831
+ layers: Layer[];
9347
9832
  [property: string]: any;
9348
9833
  };
9349
- type IndecentLayer = {
9350
- general_spec: IndecentGeneralSpec;
9351
- layer_config: IndecentLayerConfig;
9352
- resource: IndecentResource;
9834
+ type Layer = {
9835
+ general_spec: GeneralSpec;
9836
+ layer_config: LayerConfig;
9837
+ resource: Resource;
9353
9838
  visible: boolean;
9354
9839
  [property: string]: any;
9355
9840
  };
9356
- type IndecentGeneralSpec = {
9357
- pos_spec: IndecentPosSpec;
9358
- render_spec: IndecentRenderSpec;
9359
- size_spec: IndecentSizeSpec;
9841
+ type GeneralSpec = {
9842
+ pos_spec: PosSpec;
9843
+ render_spec: RenderSpec;
9844
+ size_spec: SizeSpec;
9360
9845
  [property: string]: any;
9361
9846
  };
9362
- type IndecentPosSpec = {
9847
+ type PosSpec = {
9363
9848
  axis_x: number;
9364
9849
  axis_y: number;
9365
9850
  coordinate_pos: number;
9366
9851
  [property: string]: any;
9367
9852
  };
9368
- type IndecentRenderSpec = {
9853
+ type RenderSpec = {
9369
9854
  opacity: number;
9370
9855
  [property: string]: any;
9371
9856
  };
9372
- type IndecentSizeSpec = {
9857
+ type SizeSpec = {
9373
9858
  height: number;
9374
9859
  width: number;
9375
9860
  [property: string]: any;
9376
9861
  };
9377
- type IndecentLayerConfig = {
9378
- is_critical?: boolean;
9379
- tags: IndecentTags;
9862
+ type LayerConfig = {
9863
+ is_critical: boolean;
9864
+ tags: Tags;
9380
9865
  [property: string]: any;
9381
9866
  };
9382
- type IndecentTags = {
9383
- AVATAR_LAYER?: {
9867
+ type Tags = {
9868
+ AVATAR_LAYER: {
9384
9869
  [key: string]: any;
9385
9870
  };
9386
- GENERAL_CFG: IndecentGENERALCFG;
9387
- ICON_LAYER: {
9871
+ GENERAL_CFG: GeneralCFG;
9872
+ ICON_LAYER?: {
9873
+ [key: string]: any;
9874
+ };
9875
+ PENDENT_LAYER?: {
9388
9876
  [key: string]: any;
9389
9877
  };
9390
9878
  [property: string]: any;
9391
9879
  };
9392
- type IndecentGENERALCFG = {
9880
+ type GeneralCFG = {
9393
9881
  config_type: number;
9394
- general_config: IndecentGeneralConfig;
9882
+ general_config: GeneralConfig;
9395
9883
  [property: string]: any;
9396
9884
  };
9397
- type IndecentGeneralConfig = {
9398
- web_css_style: IndecentWebcssStyle;
9885
+ type GeneralConfig = {
9886
+ web_css_style: WebcssStyle;
9399
9887
  [property: string]: any;
9400
9888
  };
9401
- type IndecentWebcssStyle = {
9402
- 'background-color': string;
9403
- border: string;
9889
+ type WebcssStyle = {
9890
+ 'background-color'?: string;
9891
+ border?: string;
9404
9892
  borderRadius: string;
9405
- boxSizing: string;
9893
+ boxSizing?: string;
9406
9894
  [property: string]: any;
9407
9895
  };
9408
- type IndecentResource = {
9409
- res_image: IndecentResImage;
9896
+ type Resource = {
9897
+ res_image: ResImage;
9410
9898
  res_type: number;
9411
9899
  [property: string]: any;
9412
9900
  };
9413
- type IndecentResImage = {
9414
- image_src: IndecentImageSrc;
9901
+ type ResImage = {
9902
+ image_src: ImageSrc;
9415
9903
  [property: string]: any;
9416
9904
  };
9417
- type IndecentImageSrc = {
9418
- local: number;
9419
- placeholder?: number;
9420
- remote?: IndecentRemote;
9905
+ type ImageSrc = {
9906
+ local?: number;
9907
+ placeholder: number;
9908
+ remote: Remote;
9421
9909
  src_type: number;
9422
9910
  [property: string]: any;
9423
9911
  };
9424
- type IndecentRemote = {
9912
+ type Remote = {
9425
9913
  bfs_style: string;
9426
9914
  url: string;
9427
9915
  [property: string]: any;
9428
9916
  };
9429
- type IndecentLevelInfo = {
9917
+ type FansDetail = {
9918
+ guard_icon: string;
9919
+ guard_level: number;
9920
+ honor_icon: string;
9921
+ intimacy: number;
9922
+ is_receive: number;
9923
+ level: number;
9924
+ master_status: number;
9925
+ medal_color: number;
9926
+ medal_color_border: number;
9927
+ medal_color_end: number;
9928
+ medal_color_level: number;
9929
+ medal_color_name: number;
9930
+ medal_id: number;
9931
+ medal_level_bg_color: number;
9932
+ medal_name: string;
9933
+ score: number;
9934
+ uid: number;
9935
+ [property: string]: any;
9936
+ };
9937
+ type LevelInfo = {
9430
9938
  current_exp: number;
9431
9939
  current_level: number;
9432
9940
  current_min: number;
9433
9941
  next_exp: number;
9434
9942
  [property: string]: any;
9435
9943
  };
9436
- type IndecentNameplate = {
9944
+ type Nameplate = {
9437
9945
  condition: string;
9438
9946
  image: string;
9439
9947
  image_small: string;
@@ -9442,12 +9950,12 @@ type IndecentNameplate = {
9442
9950
  nid: number;
9443
9951
  [property: string]: any;
9444
9952
  };
9445
- type IndecentOfficialVerify = {
9953
+ type OfficialVerify = {
9446
9954
  desc: string;
9447
9955
  type: number;
9448
9956
  [property: string]: any;
9449
9957
  };
9450
- type IndecentPendant = {
9958
+ type MemberPendant = {
9451
9959
  expire: number;
9452
9960
  image: string;
9453
9961
  image_enhance: string;
@@ -9457,17 +9965,97 @@ type IndecentPendant = {
9457
9965
  pid: number;
9458
9966
  [property: string]: any;
9459
9967
  };
9460
- type IndecentUserSailing = {
9461
- cardbg: null;
9968
+ type Senior = {
9969
+ status: number;
9970
+ [property: string]: any;
9971
+ };
9972
+ type UserSailing = {
9973
+ cardbg: Cardbg;
9462
9974
  cardbg_with_focus: null;
9463
- pendant: null;
9975
+ pendant: null | PendantPendant;
9464
9976
  [property: string]: any;
9465
9977
  };
9466
- type IndecentVip = {
9978
+ type Cardbg = {
9979
+ fan: CardbgFan;
9980
+ id: number;
9981
+ image: string;
9982
+ image_group: null;
9983
+ jump_url: string;
9984
+ name: string;
9985
+ type: string;
9986
+ [property: string]: any;
9987
+ };
9988
+ type CardbgFan = {
9989
+ color: string;
9990
+ color_format: PurpleColorFormat;
9991
+ is_fan: number;
9992
+ name: string;
9993
+ num_desc: string;
9994
+ num_prefix: string;
9995
+ number: number;
9996
+ [property: string]: any;
9997
+ };
9998
+ type PurpleColorFormat = {
9999
+ colors: string[];
10000
+ end_point: string;
10001
+ gradients: number[];
10002
+ start_point: string;
10003
+ [property: string]: any;
10004
+ };
10005
+ type PendantPendant = {
10006
+ id: number;
10007
+ image: string;
10008
+ image_enhance: string;
10009
+ image_enhance_frame: string;
10010
+ jump_url: string;
10011
+ name: string;
10012
+ type: string;
10013
+ [property: string]: any;
10014
+ };
10015
+ type UserSailingV2 = {
10016
+ card_bg: CardBg;
10017
+ pendant?: UserSailingV2Pendant;
10018
+ [property: string]: any;
10019
+ };
10020
+ type CardBg = {
10021
+ fan: CardBgFan;
10022
+ id: number;
10023
+ image: string;
10024
+ jump_url: string;
10025
+ name: string;
10026
+ type: string;
10027
+ [property: string]: any;
10028
+ };
10029
+ type CardBgFan = {
10030
+ color: string;
10031
+ color_format: FluffyColorFormat;
10032
+ is_fan: number;
10033
+ name?: string;
10034
+ num_desc: string;
10035
+ num_prefix: string;
10036
+ number: number;
10037
+ [property: string]: any;
10038
+ };
10039
+ type FluffyColorFormat = {
10040
+ colors: string[];
10041
+ end_point: string;
10042
+ gradients: number[];
10043
+ start_point: string;
10044
+ [property: string]: any;
10045
+ };
10046
+ type UserSailingV2Pendant = {
10047
+ id: number;
10048
+ image: string;
10049
+ image_enhance: string;
10050
+ name: string;
10051
+ type: string;
10052
+ [property: string]: any;
10053
+ };
10054
+ type Vip = {
9467
10055
  accessStatus: number;
9468
10056
  avatar_subscript: number;
9469
10057
  dueRemark: string;
9470
- label: IndecentLabel;
10058
+ label: Label;
9471
10059
  nickname_color: string;
9472
10060
  themeType: number;
9473
10061
  vipDueDate: number;
@@ -9476,7 +10064,7 @@ type IndecentVip = {
9476
10064
  vipType: number;
9477
10065
  [property: string]: any;
9478
10066
  };
9479
- type IndecentLabel = {
10067
+ type Label = {
9480
10068
  bg_color: string;
9481
10069
  bg_style: number;
9482
10070
  border_color: string;
@@ -9491,36 +10079,29 @@ type IndecentLabel = {
9491
10079
  use_img_label: boolean;
9492
10080
  [property: string]: any;
9493
10081
  };
9494
- type StickyReplyControl = {
9495
- location: string;
9496
- max_line: number;
9497
- time_desc: string;
9498
- translation_switch: number;
9499
- [property: string]: any;
9500
- };
9501
- type StickyUpAction = {
9502
- like: boolean;
9503
- reply: boolean;
9504
- [property: string]: any;
9505
- };
9506
- type TopReplyReplyControl = {
9507
- cm_recommend_component: string;
9508
- is_up_top: boolean;
10082
+ type ReplyControl = {
10083
+ biz_scene: string;
10084
+ is_note_v2: boolean;
9509
10085
  location: string;
9510
10086
  max_line: number;
9511
10087
  sub_reply_entry_text: string;
9512
10088
  sub_reply_title_text: string;
9513
10089
  time_desc: string;
9514
10090
  translation_switch: number;
9515
- up_reply: boolean;
9516
10091
  [property: string]: any;
9517
10092
  };
9518
- type TopReplyUpAction = {
10093
+ type UpAction = {
9519
10094
  like: boolean;
9520
10095
  reply: boolean;
9521
10096
  [property: string]: any;
9522
10097
  };
9523
- type DataUpper = {
10098
+ type Top = {
10099
+ admin: null;
10100
+ upper: null;
10101
+ vote: null;
10102
+ [property: string]: any;
10103
+ };
10104
+ type Upper = {
9524
10105
  mid: number;
9525
10106
  [property: string]: any;
9526
10107
  };
@@ -18910,6 +19491,10 @@ interface BilibiliDataOptionsMap {
18910
19491
  opt: BilibiliMethodOptionsMap['CommentParams'];
18911
19492
  data: BiliWorkComments;
18912
19493
  };
19494
+ 指定评论的回复: {
19495
+ opt: BilibiliMethodOptionsMap['CommentReplyParams'];
19496
+ data: BiliCommentReply;
19497
+ };
18913
19498
  用户主页数据: {
18914
19499
  opt: BilibiliMethodOptionsMap['UserParams'];
18915
19500
  data: BiliUserProfile;
@@ -19153,6 +19738,8 @@ declare class BiLiBiLiAPI {
19153
19738
  /** 评论区类型,type参数详见 [评论区类型代码](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/comment/readme.md#评论区类型代码) */
19154
19739
  评论区明细(data: BilibiliMethodOptionsWithoutMethodType['CommentParams']): string;
19155
19740
  评论区状态(data: BilibiliMethodOptionsWithoutMethodType['CommentParams']): string;
19741
+ /** 指定评论的回复 */
19742
+ 指定评论的回复(data: BilibiliMethodOptionsWithoutMethodType['CommentReplyParams']): string;
19156
19743
  表情列表(): string;
19157
19744
  番剧明细(data: BilibiliMethodOptionsWithoutMethodType['BangumiInfoParams']): string;
19158
19745
  番剧视频流信息(data: BilibiliMethodOptionsWithoutMethodType['BangumiStreamParams']): string;
@@ -19271,7 +19858,7 @@ declare const validateBilibiliParams: <T extends BilibiliMethodType>(methodType:
19271
19858
  cid: number;
19272
19859
  } | {
19273
19860
  methodType: "\u8BC4\u8BBA\u6570\u636E";
19274
- type: number;
19861
+ type: CommentType;
19275
19862
  oid: string;
19276
19863
  number?: number;
19277
19864
  mode?: 0 | 1 | 2 | 3;
@@ -19279,6 +19866,12 @@ declare const validateBilibiliParams: <T extends BilibiliMethodType>(methodType:
19279
19866
  plat?: number;
19280
19867
  seek_rpid?: string;
19281
19868
  web_location?: string;
19869
+ } | {
19870
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
19871
+ type: CommentType;
19872
+ oid: string;
19873
+ root: string;
19874
+ number?: number;
19282
19875
  } | {
19283
19876
  methodType: "\u7528\u6237\u4E3B\u9875\u6570\u636E" | "\u7528\u6237\u4E3B\u9875\u52A8\u6001\u5217\u8868\u6570\u636E" | "\u83B7\u53D6UP\u4E3B\u603B\u64AD\u653E\u91CF";
19284
19877
  host_mid: number;
@@ -19404,7 +19997,7 @@ declare const bilibili: {
19404
19997
  */
19405
19998
  getComments: <M extends TypeMode>(options: Omit<{
19406
19999
  methodType: "\u8BC4\u8BBA\u6570\u636E";
19407
- type: number;
20000
+ type: CommentType;
19408
20001
  oid: string;
19409
20002
  number?: number;
19410
20003
  mode?: 0 | 1 | 2 | 3;
@@ -19417,6 +20010,23 @@ declare const bilibili: {
19417
20010
  } & {
19418
20011
  typeMode?: M | undefined;
19419
20012
  }, cookie?: string) => Promise<ApiResponse<ConditionalReturnType<BiliWorkComments, M>>>;
20013
+ /**
20014
+ * 获取指定评论的回复数据
20015
+ * @param options 请求参数,包含 type, oid, root, 可选的 number, pn 和 typeMode
20016
+ * @param cookie 有效的用户 Cookie
20017
+ * @returns 统一格式的API响应
20018
+ */
20019
+ getCommentReply: <M extends TypeMode>(options: Omit<{
20020
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
20021
+ type: CommentType;
20022
+ oid: string;
20023
+ root: string;
20024
+ number?: number;
20025
+ }, "methodType"> & {
20026
+ typeMode?: TypeMode;
20027
+ } & {
20028
+ typeMode?: M | undefined;
20029
+ }, cookie?: string) => Promise<ApiResponse<ConditionalReturnType<BiliCommentReply, M>>>;
19420
20030
  /**
19421
20031
  * 获取用户主页数据
19422
20032
  * @param options 请求参数,包含 host_mid 和可选的 typeMode
@@ -19723,7 +20333,7 @@ declare const createBoundBilibiliApi: (cookie: string, requestConfig: RequestCon
19723
20333
  */
19724
20334
  getComments: <M extends TypeMode>(options: Omit<{
19725
20335
  methodType: "\u8BC4\u8BBA\u6570\u636E";
19726
- type: number;
20336
+ type: CommentType;
19727
20337
  oid: string;
19728
20338
  number?: number;
19729
20339
  mode?: 0 | 1 | 2 | 3;
@@ -19736,6 +20346,22 @@ declare const createBoundBilibiliApi: (cookie: string, requestConfig: RequestCon
19736
20346
  } & {
19737
20347
  typeMode?: M | undefined;
19738
20348
  }) => Promise<ApiResponse<ConditionalReturnType<BiliWorkComments, M>>>;
20349
+ /**
20350
+ * 获取指定评论的回复数据
20351
+ * @param options 请求参数,包含 type, oid, root, 可选的 number, pn 和 typeMode
20352
+ * @returns 统一格式的API响应
20353
+ */
20354
+ getCommentReply: <M extends TypeMode>(options: Omit<{
20355
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
20356
+ type: CommentType;
20357
+ oid: string;
20358
+ root: string;
20359
+ number?: number;
20360
+ }, "methodType"> & {
20361
+ typeMode?: TypeMode;
20362
+ } & {
20363
+ typeMode?: M | undefined;
20364
+ }) => Promise<ApiResponse<ConditionalReturnType<BiliCommentReply, M>>>;
19739
20365
  /**
19740
20366
  * 获取用户主页数据
19741
20367
  * @param options 请求参数,包含 host_mid 和可选的 typeMode
@@ -21454,7 +22080,7 @@ declare const createAmagiClient: (options?: Options) => {
21454
22080
  }) => Promise<ApiResponse<ConditionalReturnType<BiliVideoPlayurlIsLogin | BiliBiliVideoPlayurlNoLogin, M>>>;
21455
22081
  getComments: <M extends TypeMode>(options: Omit<{
21456
22082
  methodType: "\u8BC4\u8BBA\u6570\u636E";
21457
- type: number;
22083
+ type: CommentType;
21458
22084
  oid: string;
21459
22085
  number?: number;
21460
22086
  mode?: 0 | 1 | 2 | 3;
@@ -21467,6 +22093,17 @@ declare const createAmagiClient: (options?: Options) => {
21467
22093
  } & {
21468
22094
  typeMode?: M | undefined;
21469
22095
  }) => Promise<ApiResponse<ConditionalReturnType<BiliWorkComments, M>>>;
22096
+ getCommentReply: <M extends TypeMode>(options: Omit<{
22097
+ methodType: "\u6307\u5B9A\u8BC4\u8BBA\u7684\u56DE\u590D";
22098
+ type: CommentType;
22099
+ oid: string;
22100
+ root: string;
22101
+ number?: number;
22102
+ }, "methodType"> & {
22103
+ typeMode?: TypeMode;
22104
+ } & {
22105
+ typeMode?: M | undefined;
22106
+ }) => Promise<ApiResponse<ConditionalReturnType<BiliCommentReply, M>>>;
21470
22107
  getUserProfile: <M extends TypeMode>(options: Omit<{
21471
22108
  methodType: "\u7528\u6237\u4E3B\u9875\u6570\u636E" | "\u7528\u6237\u4E3B\u9875\u52A8\u6001\u5217\u8868\u6570\u636E" | "\u83B7\u53D6UP\u4E3B\u603B\u64AD\u653E\u91CF";
21472
22109
  host_mid: number;
@@ -22050,4 +22687,4 @@ declare const amagi: typeof Client;
22050
22687
  */
22051
22688
 
22052
22689
  //#endregion
22053
- export { APIErrorType, AdditionalType, ApiError, ApiResponse, ArticleCard, ArticleContent, ArticleInfo, BaseResponse, BiliAv2Bv, BiliBangumiVideoInfo, BiliBangumiVideoPlayurlIsLogin, BiliBangumiVideoPlayurlNoLogin, BiliBiliVideoPlayurlNoLogin, BiliBv2AV, BiliCheckQrcode, BiliDynamicCard, BiliDynamicInfo, BiliDynamicInfoUnion, BiliEmojiList, BiliLiveRoomDef, BiliLiveRoomDetail, BiliNewLoginQrcode, BiliOneWork, BiliUserDynamic, BiliUserFullView, BiliUserProfile, BiliVideoPlayurlIsLogin, BiliWorkComments, BilibiliArticleCardParams, BilibiliArticleCardParamsSchema, BilibiliArticleInfoParams, BilibiliArticleInfoParamsSchema, BilibiliArticleParams, BilibiliArticleParamsSchema, BilibiliAv2BvParams, BilibiliAv2BvParamsSchema, BilibiliBangumiInfoParams, BilibiliBangumiInfoParamsSchema, BilibiliBangumiStreamParams, BilibiliBangumiStreamParamsSchema, BilibiliBv2AvParams, BilibiliBv2AvParamsSchema, BilibiliColumnInfoParams, BilibiliColumnInfoParamsSchema, BilibiliCommentParams, BilibiliCommentParamsSchema, BilibiliDataOptions, BilibiliDataOptionsMap, BilibiliDynamicParams, BilibiliDynamicParamsSchema, BilibiliEmojiParams, BilibiliEmojiParamsSchema, BilibiliLiveParams, BilibiliLiveParamsSchema, BilibiliLoginParams, BilibiliLoginParamsSchema, type BilibiliMethodOptionsMap, type BilibiliMethodType, BilibiliQrcodeParams, BilibiliQrcodeParamsSchema, BilibiliQrcodeStatusParams, BilibiliQrcodeStatusParamsSchema, BilibiliUserParams, BilibiliUserParamsSchema, BilibiliValidationSchemas, BilibiliVideoDownloadParams, BilibiliVideoDownloadParamsSchema, BilibiliVideoParams, BilibiliVideoParamsSchema, BoundBilibiliApi, BoundDouyinApi, BoundKuaishouApi, BoundXiaohongshuApi, ColumnInfo, CommentReply, CookieConfig, CreateApp, DouyinCommentParams, DouyinCommentParamsSchema, DouyinCommentReplyParams, DouyinCommentReplyParamsSchema, DouyinDanmakuParams, DouyinDanmakuParamsSchema, DouyinDataOptions, DouyinDataOptionsMap, DouyinEmojiListParams, DouyinEmojiListParamsSchema, DouyinEmojiProParams, DouyinEmojiProParamsSchema, DouyinLiveRoomParams, type DouyinMethodOptionsMap, type DouyinMethodType, DouyinMusicParams, DouyinMusicParamsSchema, DouyinQrcodeParams, DouyinQrcodeParamsSchema, DouyinSearchParams, DouyinSearchParamsSchema, DouyinUserParams, DouyinUserParamsSchema, DouyinValidationSchemas, DouyinWorkParams, DouyinWorkParamsSchema, DyDanmakuList, DyEmojiList, DyEmojiProList, DyImageAlbumWork, DyMusicWork, DySearchInfo, DySlidesWork, DySuggestWords, DyUserInfo, DyUserLiveVideos, DyUserPostVideos, DyVideoWork, DyWorkComments, DynamicType, DynamicTypeAV, DynamicTypeArticle, DynamicTypeDraw, DynamicTypeForward, DynamicTypeForwardUnion, DynamicTypeLiveRcmd, DynamicTypeWord, ErrorResponse, KsEmojiList, KsOneWork, KsWorkComments, KuaishouCommentParams, KuaishouCommentParamsSchema, KuaishouDataOptions, KuaishouDataOptionsMap, KuaishouEmojiParams, KuaishouEmojiParamsSchema, type KuaishouMethodOptionsMap, type KuaishouMethodType, KuaishouValidationSchemas, KuaishouVideoParams, KuaishouVideoParamsSchema, MajorType, type NetworksConfigType, OmitMethodType, Options, RequestConfig, SuccessResponse, TypeControl, ValidationError, XiaohongshuDataOptions, XiaohongshuDataOptionsMap, XiaohongshuMethodType, XiaohongshuValidationSchemas, amagi, amagiClient, av2bv, bilibili, bilibiliApiUrls, bilibiliErrorCodeMap, bilibiliUtils, bv2av, createAmagiClient, createBilibiliRoutes, createBilibiliRoutes as registerBilibiliRoutes, createBoundBilibiliApi, createBoundDouyinApi, createBoundKuaishouApi, createBoundXiaohongshuApi, createDouyinRoutes, createDouyinRoutes as registerDouyinRoutes, createErrorResponse, createKuaishouRoutes, createKuaishouRoutes as registerKuaishouRoutes, createSuccessResponse, createXiaohongshuRoutes, createXiaohongshuRoutes as registerXiaohongshuRoutes, Client as default, douyin, douyinApiUrls, douyinSign, douyinUtils, fetchData, fetchResponse, getBilibiliData, getDouyinData, getHeadersAndData, getKuaishouData, handleError, httpLogger, kuaishou, kuaishouApiUrls, kuaishouUtils, logMiddleware, logger, qtparam, validateBilibiliParams, validateDouyinParams, validateKuaishouParams, validateXiaohongshuParams, wbi_sign, xiaohongshu, xiaohongshuApiUrls, xiaohongshuSign, xiaohongshuUtils };
22690
+ export { APIErrorType, AdditionalType, ApiError, ApiResponse, ArticleCard, ArticleContent, ArticleInfo, BaseResponse, BiliAv2Bv, BiliBangumiVideoInfo, BiliBangumiVideoPlayurlIsLogin, BiliBangumiVideoPlayurlNoLogin, BiliBiliVideoPlayurlNoLogin, BiliBv2AV, BiliCheckQrcode, BiliDynamicCard, BiliDynamicInfo, BiliDynamicInfoUnion, BiliEmojiList, BiliLiveRoomDef, BiliLiveRoomDetail, BiliNewLoginQrcode, BiliOneWork, BiliUserDynamic, BiliUserFullView, BiliUserProfile, BiliVideoPlayurlIsLogin, BiliWorkComments, BilibiliArticleCardParams, BilibiliArticleCardParamsSchema, BilibiliArticleInfoParams, BilibiliArticleInfoParamsSchema, BilibiliArticleParams, BilibiliArticleParamsSchema, BilibiliAv2BvParams, BilibiliAv2BvParamsSchema, BilibiliBangumiInfoParams, BilibiliBangumiInfoParamsSchema, BilibiliBangumiStreamParams, BilibiliBangumiStreamParamsSchema, BilibiliBv2AvParams, BilibiliBv2AvParamsSchema, BilibiliColumnInfoParams, BilibiliColumnInfoParamsSchema, BilibiliCommentParams, BilibiliCommentParamsSchema, BilibiliCommentReplyParams, BilibiliCommentReplyParamsSchema, BilibiliDataOptions, BilibiliDataOptionsMap, BilibiliDynamicParams, BilibiliDynamicParamsSchema, BilibiliEmojiParams, BilibiliEmojiParamsSchema, BilibiliLiveParams, BilibiliLiveParamsSchema, BilibiliLoginParams, BilibiliLoginParamsSchema, type BilibiliMethodOptionsMap, type BilibiliMethodType, BilibiliQrcodeParams, BilibiliQrcodeParamsSchema, BilibiliQrcodeStatusParams, BilibiliQrcodeStatusParamsSchema, BilibiliUserParams, BilibiliUserParamsSchema, BilibiliValidationSchemas, BilibiliVideoDownloadParams, BilibiliVideoDownloadParamsSchema, BilibiliVideoParams, BilibiliVideoParamsSchema, BoundBilibiliApi, BoundDouyinApi, BoundKuaishouApi, BoundXiaohongshuApi, ColumnInfo, CommentReply, CookieConfig, CreateApp, DouyinCommentParams, DouyinCommentParamsSchema, DouyinCommentReplyParams, DouyinCommentReplyParamsSchema, DouyinDanmakuParams, DouyinDanmakuParamsSchema, DouyinDataOptions, DouyinDataOptionsMap, DouyinEmojiListParams, DouyinEmojiListParamsSchema, DouyinEmojiProParams, DouyinEmojiProParamsSchema, DouyinLiveRoomParams, type DouyinMethodOptionsMap, type DouyinMethodType, DouyinMusicParams, DouyinMusicParamsSchema, DouyinQrcodeParams, DouyinQrcodeParamsSchema, DouyinSearchParams, DouyinSearchParamsSchema, DouyinUserParams, DouyinUserParamsSchema, DouyinValidationSchemas, DouyinWorkParams, DouyinWorkParamsSchema, DyDanmakuList, DyEmojiList, DyEmojiProList, DyImageAlbumWork, DyMusicWork, DySearchInfo, DySlidesWork, DySuggestWords, DyUserInfo, DyUserLiveVideos, DyUserPostVideos, DyVideoWork, DyWorkComments, DynamicType, DynamicTypeAV, DynamicTypeArticle, DynamicTypeDraw, DynamicTypeForward, DynamicTypeForwardUnion, DynamicTypeLiveRcmd, DynamicTypeWord, ErrorResponse, KsEmojiList, KsOneWork, KsWorkComments, KuaishouCommentParams, KuaishouCommentParamsSchema, KuaishouDataOptions, KuaishouDataOptionsMap, KuaishouEmojiParams, KuaishouEmojiParamsSchema, type KuaishouMethodOptionsMap, type KuaishouMethodType, KuaishouValidationSchemas, KuaishouVideoParams, KuaishouVideoParamsSchema, MajorType, type NetworksConfigType, OmitMethodType, Options, RequestConfig, SuccessResponse, TypeControl, ValidationError, XiaohongshuDataOptions, XiaohongshuDataOptionsMap, XiaohongshuMethodType, XiaohongshuValidationSchemas, amagi, amagiClient, av2bv, bilibili, bilibiliApiUrls, bilibiliErrorCodeMap, bilibiliUtils, bv2av, createAmagiClient, createBilibiliRoutes, createBilibiliRoutes as registerBilibiliRoutes, createBoundBilibiliApi, createBoundDouyinApi, createBoundKuaishouApi, createBoundXiaohongshuApi, createDouyinRoutes, createDouyinRoutes as registerDouyinRoutes, createErrorResponse, createKuaishouRoutes, createKuaishouRoutes as registerKuaishouRoutes, createSuccessResponse, createXiaohongshuRoutes, createXiaohongshuRoutes as registerXiaohongshuRoutes, Client as default, douyin, douyinApiUrls, douyinSign, douyinUtils, fetchData, fetchResponse, getBilibiliData, getDouyinData, getHeadersAndData, getKuaishouData, handleError, httpLogger, kuaishou, kuaishouApiUrls, kuaishouUtils, logMiddleware, logger, qtparam, validateBilibiliParams, validateDouyinParams, validateKuaishouParams, validateXiaohongshuParams, wbi_sign, xiaohongshu, xiaohongshuApiUrls, xiaohongshuSign, xiaohongshuUtils };