rsshub 1.0.0-master.f8ba9fc → 1.0.0-master.f8c1415

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.
Files changed (2684) hide show
  1. package/README.md +1 -1
  2. package/lib/api/index.ts +2 -7
  3. package/lib/{app.tsx → app-bootstrap.tsx} +0 -2
  4. package/lib/app.test.ts +15 -1
  5. package/lib/app.ts +5 -0
  6. package/lib/assets/logo.svg +1 -0
  7. package/lib/config.ts +91 -2
  8. package/lib/errors/index.test.ts +15 -5
  9. package/lib/errors/index.tsx +3 -2
  10. package/lib/errors/types/captcha.ts +5 -0
  11. package/lib/index.ts +48 -15
  12. package/lib/middleware/cache.ts +4 -0
  13. package/lib/middleware/debug.ts +6 -4
  14. package/lib/middleware/header.test.ts +1 -0
  15. package/lib/middleware/header.ts +6 -0
  16. package/lib/middleware/parameter.ts +5 -4
  17. package/lib/middleware/template.test.ts +8 -0
  18. package/lib/middleware/template.tsx +5 -0
  19. package/lib/registry.test.ts +24 -1
  20. package/lib/registry.ts +160 -15
  21. package/lib/router.js +1 -19
  22. package/lib/routes/005/index.ts +3 -5
  23. package/lib/routes/0818tuan/index.ts +2 -2
  24. package/lib/routes/0xxx/index.ts +169 -0
  25. package/lib/routes/0xxx/namespace.ts +9 -0
  26. package/lib/routes/0xxx/templates/description.art +50 -0
  27. package/lib/routes/10000link/info.ts +251 -0
  28. package/lib/routes/10000link/namespace.ts +9 -0
  29. package/lib/routes/10000link/templates/description.art +7 -0
  30. package/lib/routes/10jqka/realtimenews.ts +2 -2
  31. package/lib/routes/121/namespace.ts +9 -0
  32. package/lib/routes/121/templates/description.art +17 -0
  33. package/lib/routes/121/weather-live.ts +104 -0
  34. package/lib/routes/12306/index.ts +0 -2
  35. package/lib/routes/12306/zxdt.ts +15 -33
  36. package/lib/routes/12371/zxfb.ts +2 -2
  37. package/lib/routes/141jav/index.ts +3 -2
  38. package/lib/routes/141ppv/index.ts +3 -2
  39. package/lib/routes/163/ds.ts +0 -2
  40. package/lib/routes/163/exclusive.ts +17 -19
  41. package/lib/routes/163/music/artist-songs.ts +0 -2
  42. package/lib/routes/163/music/artist.ts +0 -2
  43. package/lib/routes/163/music/djradio.ts +0 -2
  44. package/lib/routes/163/music/playlist.ts +0 -2
  45. package/lib/routes/163/music/userevents.ts +0 -2
  46. package/lib/routes/163/music/userplaylist.ts +0 -2
  47. package/lib/routes/163/music/userplayrecords.ts +0 -2
  48. package/lib/routes/163/news/rank.ts +3 -3
  49. package/lib/routes/163/news/special.ts +2 -2
  50. package/lib/routes/163/open/vip.ts +0 -2
  51. package/lib/routes/163/renjian.ts +2 -2
  52. package/lib/routes/163/utils.ts +2 -5
  53. package/lib/routes/18comic/album.ts +60 -64
  54. package/lib/routes/18comic/blogs.ts +4 -3
  55. package/lib/routes/18comic/index.ts +12 -11
  56. package/lib/routes/18comic/search.ts +54 -4
  57. package/lib/routes/18comic/utils.ts +70 -4
  58. package/lib/routes/199it/index.ts +332 -0
  59. package/lib/routes/199it/templates/description.art +20 -0
  60. package/lib/routes/19lou/index.ts +11 -11
  61. package/lib/routes/1point3acres/blog.ts +2 -2
  62. package/lib/routes/1point3acres/category.ts +6 -6
  63. package/lib/routes/1point3acres/offer.ts +0 -2
  64. package/lib/routes/1point3acres/section.ts +18 -18
  65. package/lib/routes/1point3acres/thread.ts +6 -6
  66. package/lib/routes/1point3acres/utils.ts +0 -3
  67. package/lib/routes/1x/index.ts +1 -3
  68. package/lib/routes/2023game/index.ts +3 -3
  69. package/lib/routes/2048/index.ts +66 -57
  70. package/lib/routes/21caijing/channel.ts +2 -2
  71. package/lib/routes/2cycd/index.ts +3 -3
  72. package/lib/routes/30secondsofcode/utils.ts +0 -1
  73. package/lib/routes/36kr/hot-list.ts +12 -4
  74. package/lib/routes/36kr/index.ts +3 -3
  75. package/lib/routes/3dmgame/news-center.ts +3 -3
  76. package/lib/routes/3kns/index.ts +15 -17
  77. package/lib/routes/423down/index.ts +24 -26
  78. package/lib/routes/4gamers/utils.ts +0 -3
  79. package/lib/routes/4khd/article.ts +28 -0
  80. package/lib/routes/4khd/category.ts +49 -0
  81. package/lib/routes/4khd/const.ts +4 -0
  82. package/lib/routes/4khd/latest.ts +42 -0
  83. package/lib/routes/4khd/namespace.ts +8 -0
  84. package/lib/routes/4khd/types.ts +12 -0
  85. package/lib/routes/4ksj/forum.ts +0 -2
  86. package/lib/routes/4kup/article.ts +29 -0
  87. package/lib/routes/4kup/category.ts +48 -0
  88. package/lib/routes/4kup/const.ts +4 -0
  89. package/lib/routes/4kup/latest.ts +42 -0
  90. package/lib/routes/4kup/namespace.ts +8 -0
  91. package/lib/routes/4kup/popular.ts +82 -0
  92. package/lib/routes/4kup/tag.ts +48 -0
  93. package/lib/routes/4kup/types.ts +12 -0
  94. package/lib/routes/500px/tribe-set.ts +1 -3
  95. package/lib/routes/51cto/utils.ts +1 -1
  96. package/lib/routes/56kog/class.ts +5 -5
  97. package/lib/routes/56kog/top.ts +2 -2
  98. package/lib/routes/56kog/util.ts +0 -3
  99. package/lib/routes/591/list.ts +0 -2
  100. package/lib/routes/5music/index.ts +87 -0
  101. package/lib/routes/5music/namespace.ts +9 -0
  102. package/lib/routes/6park/index.ts +9 -4
  103. package/lib/routes/6park/news.ts +12 -3
  104. package/lib/routes/6v123/index.ts +487 -0
  105. package/lib/routes/6v123/namespace.ts +1 -0
  106. package/lib/routes/78dm/index.ts +65 -67
  107. package/lib/routes/7mmtv/index.ts +13 -14
  108. package/lib/routes/8264/list.ts +37 -39
  109. package/lib/routes/8kcos/cat.ts +3 -0
  110. package/lib/routes/8kcos/latest.ts +1 -0
  111. package/lib/routes/8kcos/tag.ts +1 -0
  112. package/lib/routes/91porn/author.ts +1 -2
  113. package/lib/routes/91porn/index.ts +3 -4
  114. package/lib/routes/95mm/category.ts +3 -2
  115. package/lib/routes/95mm/tab.ts +2 -1
  116. package/lib/routes/95mm/tag.ts +1 -0
  117. package/lib/routes/95mm/utils.ts +0 -3
  118. package/lib/routes/a9vg/index.ts +11 -13
  119. package/lib/routes/aa1/60s.ts +189 -0
  120. package/lib/routes/aa1/namespace.ts +9 -0
  121. package/lib/routes/aamacau/index.ts +5 -5
  122. package/lib/routes/abc/index.ts +2 -4
  123. package/lib/routes/abskoop/index.ts +3 -0
  124. package/lib/routes/abskoop/nsfw.ts +3 -0
  125. package/lib/routes/academia/topics.ts +10 -20
  126. package/lib/routes/accessbriefing/index.ts +19 -21
  127. package/lib/routes/acfun/article.ts +9 -9
  128. package/lib/routes/acfun/bangumi.ts +1 -1
  129. package/lib/routes/acfun/video.ts +2 -2
  130. package/lib/routes/acgvinyl/namespace.ts +6 -0
  131. package/lib/routes/acgvinyl/news.ts +86 -0
  132. package/lib/routes/acs/journal.ts +0 -2
  133. package/lib/routes/adquan/case-library.ts +144 -0
  134. package/lib/routes/adquan/index.ts +144 -0
  135. package/lib/routes/adquan/namespace.ts +9 -0
  136. package/lib/routes/adquan/templates/description.art +7 -0
  137. package/lib/routes/aeaweb/index.ts +0 -2
  138. package/lib/routes/aeon/category.ts +1 -1
  139. package/lib/routes/aeon/type.ts +1 -1
  140. package/lib/routes/aeon/utils.ts +0 -3
  141. package/lib/routes/afdian/explore.ts +6 -6
  142. package/lib/routes/aflcio/blog.ts +158 -0
  143. package/lib/routes/aflcio/namespace.ts +9 -0
  144. package/lib/routes/agefans/detail.ts +1 -1
  145. package/lib/routes/agefans/update.ts +20 -20
  146. package/lib/routes/agirls/topic-list.ts +1 -1
  147. package/lib/routes/agirls/topic.ts +1 -1
  148. package/lib/routes/agirls/z-index.ts +3 -3
  149. package/lib/routes/agora0/index.ts +2 -2
  150. package/lib/routes/agri/index.ts +52 -54
  151. package/lib/routes/ahjzu/news.ts +3 -3
  152. package/lib/routes/aibase/daily.ts +110 -0
  153. package/lib/routes/aibase/discover.ts +75 -75
  154. package/lib/routes/aibase/news.ts +1 -1
  155. package/lib/routes/aibase/topic.ts +25 -25
  156. package/lib/routes/aibase/util.ts +3 -3
  157. package/lib/routes/aicaijing/index.ts +0 -2
  158. package/lib/routes/aiea/index.ts +4 -4
  159. package/lib/routes/aijishu/index.ts +4 -4
  160. package/lib/routes/ainvest/news.ts +1 -1
  161. package/lib/routes/ainvest/utils.ts +3 -3
  162. package/lib/routes/aip/journal-pupp.ts +1 -1
  163. package/lib/routes/aip/journal.ts +26 -30
  164. package/lib/routes/aip/utils.ts +0 -3
  165. package/lib/routes/aisixiang/thinktank.ts +1 -1
  166. package/lib/routes/aisixiang/toplist.ts +2 -2
  167. package/lib/routes/ajmide/index.ts +1 -1
  168. package/lib/routes/ali213/news.ts +3 -5
  169. package/lib/routes/ali213/zl.ts +2 -4
  170. package/lib/routes/aliresearch/information.ts +2 -2
  171. package/lib/routes/alistapart/topic.ts +40 -40
  172. package/lib/routes/aliyun/database-month.ts +4 -4
  173. package/lib/routes/aliyun/developer/group.ts +12 -18
  174. package/lib/routes/aliyun/notice.ts +9 -9
  175. package/lib/routes/aljazeera/index.ts +0 -2
  176. package/lib/routes/ally/rail.ts +22 -16
  177. package/lib/routes/alternativeto/utils.ts +1 -1
  178. package/lib/routes/altotrain/namespace.ts +7 -0
  179. package/lib/routes/altotrain/news.ts +89 -0
  180. package/lib/routes/amazfitwatchfaces/index.ts +429 -0
  181. package/lib/routes/amazfitwatchfaces/namespace.ts +10 -0
  182. package/lib/routes/amazfitwatchfaces/templates/description.art +17 -0
  183. package/lib/routes/amazon/kindle-software-updates.ts +7 -9
  184. package/lib/routes/android/security-bulletin.ts +61 -0
  185. package/lib/routes/anquanke/category.ts +2 -2
  186. package/lib/routes/anquanke/vul.ts +1 -1
  187. package/lib/routes/anthropic/engineering.ts +72 -0
  188. package/lib/routes/anthropic/news.ts +51 -23
  189. package/lib/routes/anthropic/research.ts +112 -0
  190. package/lib/routes/anytxt/namespace.ts +9 -0
  191. package/lib/routes/anytxt/release-notes.ts +92 -0
  192. package/lib/routes/apkpure/versions.ts +1 -1
  193. package/lib/routes/apnews/mobile-api.ts +94 -0
  194. package/lib/routes/apnews/sitemap.ts +4 -3
  195. package/lib/routes/apnews/topics.ts +5 -3
  196. package/lib/routes/apnews/utils.ts +3 -11
  197. package/lib/routes/app-center/release.ts +0 -2
  198. package/lib/routes/app-sales/index.ts +200 -0
  199. package/lib/routes/app-sales/mostwanted.ts +194 -0
  200. package/lib/routes/app-sales/namespace.ts +9 -0
  201. package/lib/routes/app-sales/templates/description.art +120 -0
  202. package/lib/routes/app-sales/util.ts +161 -0
  203. package/lib/routes/apple/apps.ts +3 -3
  204. package/lib/routes/apple/design.ts +54 -0
  205. package/lib/routes/apple/namespace.ts +1 -1
  206. package/lib/routes/apple/podcast.ts +58 -24
  207. package/lib/routes/apple/security-releases.ts +179 -0
  208. package/lib/routes/apple/templates/security-releases.art +28 -0
  209. package/lib/routes/appleinsider/index.ts +3 -3
  210. package/lib/routes/appstore/price.ts +0 -1
  211. package/lib/routes/appstorrent/programs.ts +0 -2
  212. package/lib/routes/aqara/post.ts +0 -2
  213. package/lib/routes/aqicn/aqi.ts +1 -0
  214. package/lib/routes/arcteryx/new-arrivals.ts +6 -8
  215. package/lib/routes/arcteryx/outlet.ts +6 -8
  216. package/lib/routes/arcteryx/regear-new-arrivals.ts +0 -2
  217. package/lib/routes/artstation/user.ts +0 -2
  218. package/lib/routes/asiafruitchina/categories.ts +683 -0
  219. package/lib/routes/asiafruitchina/namespace.ts +9 -0
  220. package/lib/routes/asiafruitchina/news.ts +182 -0
  221. package/lib/routes/asiafruitchina/templates/description.art +17 -0
  222. package/lib/routes/asianfanfics/namespace.ts +7 -0
  223. package/lib/routes/asianfanfics/tag.ts +91 -0
  224. package/lib/routes/asianfanfics/text-search.ts +70 -0
  225. package/lib/routes/asiantolick/index.ts +3 -2
  226. package/lib/routes/asmr-200/index.ts +2 -2
  227. package/lib/routes/asus/bios.ts +1 -5
  228. package/lib/routes/atcoder/contest.ts +12 -12
  229. package/lib/routes/augmentcode/blog.ts +161 -0
  230. package/lib/routes/augmentcode/namespace.ts +9 -0
  231. package/lib/routes/augmentcode/templates/description.art +17 -0
  232. package/lib/routes/auto-stats/index.ts +2 -2
  233. package/lib/routes/azul/namespace.ts +9 -0
  234. package/lib/routes/azul/packages.ts +105 -0
  235. package/lib/routes/baidu/gushitong/index.ts +1 -3
  236. package/lib/routes/baidu/search.ts +0 -2
  237. package/lib/routes/baidu/tieba/forum.ts +0 -2
  238. package/lib/routes/baidu/tieba/post.ts +31 -37
  239. package/lib/routes/baidu/tieba/search.ts +5 -7
  240. package/lib/routes/baidu/top.ts +2 -4
  241. package/lib/routes/bakamh/manga.ts +74 -0
  242. package/lib/routes/bakamh/namespace.ts +8 -0
  243. package/lib/routes/bandcamp/weekly.ts +0 -2
  244. package/lib/routes/bandisoft/history.ts +329 -0
  245. package/lib/routes/bandisoft/namespace.ts +9 -0
  246. package/lib/routes/bangumi.online/online.ts +0 -2
  247. package/lib/routes/bangumi.tv/calendar/today.ts +0 -2
  248. package/lib/routes/bangumi.tv/group/reply.ts +1 -1
  249. package/lib/routes/bangumi.tv/subject/ep.ts +0 -3
  250. package/lib/routes/bangumi.tv/user/collections.ts +0 -3
  251. package/lib/routes/banshujiang/index.ts +763 -0
  252. package/lib/routes/banshujiang/namespace.ts +9 -0
  253. package/lib/routes/banshujiang/templates/description.art +17 -0
  254. package/lib/routes/banyuetan/index.ts +238 -0
  255. package/lib/routes/{xinhuanet → banyuetan}/namespace.ts +2 -2
  256. package/lib/routes/banyuetan/templates/description.art +21 -0
  257. package/lib/routes/baobua/article.ts +51 -0
  258. package/lib/routes/baobua/category.ts +60 -0
  259. package/lib/routes/baobua/const.ts +4 -0
  260. package/lib/routes/baobua/latest.ts +57 -0
  261. package/lib/routes/baobua/namespace.ts +8 -0
  262. package/lib/routes/baobua/search.ts +60 -0
  263. package/lib/routes/baozimh/index.ts +21 -5
  264. package/lib/routes/baselang/index.ts +117 -0
  265. package/lib/routes/baselang/namespace.ts +6 -0
  266. package/lib/routes/bast/index.ts +1 -1
  267. package/lib/routes/bbc/learningenglish.ts +91 -0
  268. package/lib/routes/bbcnewslabs/news.ts +4 -4
  269. package/lib/routes/bc3ts/list.ts +1 -4
  270. package/lib/routes/bdys/index.ts +78 -81
  271. package/lib/routes/behance/user.ts +2 -4
  272. package/lib/routes/beijingprice/index.ts +8 -8
  273. package/lib/routes/bendibao/news.ts +5 -5
  274. package/lib/routes/bestofjs/monthly.ts +137 -0
  275. package/lib/routes/bestofjs/namespace.ts +7 -0
  276. package/lib/routes/bestofjs/templates/description.art +36 -0
  277. package/lib/routes/bfl/announcements.ts +127 -0
  278. package/lib/routes/bfl/namespace.ts +9 -0
  279. package/lib/routes/bgmlist/onair.ts +0 -2
  280. package/lib/routes/bigquant/collections.ts +1 -1
  281. package/lib/routes/bilibili/bangumi.ts +1 -1
  282. package/lib/routes/bilibili/cache.ts +119 -26
  283. package/lib/routes/bilibili/check-cookie.ts +31 -0
  284. package/lib/routes/bilibili/danmaku.ts +3 -3
  285. package/lib/routes/bilibili/dynamic.ts +79 -28
  286. package/lib/routes/bilibili/followings-dynamic.ts +10 -4
  287. package/lib/routes/bilibili/live-room.ts +14 -12
  288. package/lib/routes/bilibili/mall-new.ts +2 -2
  289. package/lib/routes/bilibili/manga-update.ts +37 -4
  290. package/lib/routes/bilibili/page.ts +1 -1
  291. package/lib/routes/bilibili/partion.ts +57 -57
  292. package/lib/routes/bilibili/ranking.ts +27 -17
  293. package/lib/routes/bilibili/readlist.ts +1 -1
  294. package/lib/routes/bilibili/user-collection.ts +4 -3
  295. package/lib/routes/bilibili/utils.ts +5 -4
  296. package/lib/routes/bilibili/video.ts +36 -23
  297. package/lib/routes/bilibili/vsearch.ts +3 -3
  298. package/lib/routes/bilibili/wasm-exec.ts +649 -0
  299. package/lib/routes/bilibili/weekly-recommend.ts +22 -6
  300. package/lib/routes/binance/announcement.ts +1 -1
  301. package/lib/routes/bing/search.ts +2 -2
  302. package/lib/routes/biquge/index.ts +1 -1
  303. package/lib/routes/bitget/announcement.ts +1 -1
  304. package/lib/routes/bjfu/it/index.ts +2 -2
  305. package/lib/routes/bjfu/jwc/index.ts +2 -2
  306. package/lib/routes/bjfu/news/index.ts +2 -2
  307. package/lib/routes/bjnews/cat.ts +2 -9
  308. package/lib/routes/bjp/apod.ts +2 -2
  309. package/lib/routes/bjsk/keti.ts +2 -2
  310. package/lib/routes/bjtu/gs.ts +18 -18
  311. package/lib/routes/bjwxdxh/index.ts +5 -5
  312. package/lib/routes/bjx/fd.ts +1 -1
  313. package/lib/routes/bjx/huanbao.ts +4 -12
  314. package/lib/routes/bjx/types.ts +12 -16
  315. package/lib/routes/blizzard/news.ts +34 -34
  316. package/lib/routes/blockworks/index.ts +128 -0
  317. package/lib/routes/blockworks/namespace.ts +7 -0
  318. package/lib/routes/blogread/index.ts +3 -4
  319. package/lib/routes/bloomberg/authors.ts +14 -15
  320. package/lib/routes/bloomberg/index.ts +21 -20
  321. package/lib/routes/bloomberg/utils.ts +5 -17
  322. package/lib/routes/bnext/index.ts +58 -0
  323. package/lib/routes/bnext/namespace.ts +7 -0
  324. package/lib/routes/bnu/bs.ts +5 -5
  325. package/lib/routes/bnu/dwxgb.ts +3 -3
  326. package/lib/routes/bnu/fe.ts +1 -0
  327. package/lib/routes/bnu/jwb.ts +2 -1
  328. package/lib/routes/bnu/mba.ts +20 -20
  329. package/lib/routes/boc/whpj.ts +2 -2
  330. package/lib/routes/bookfere/category.ts +14 -18
  331. package/lib/routes/bookwalker/namespace.ts +9 -0
  332. package/lib/routes/bookwalker/search.ts +114 -0
  333. package/lib/routes/bookwalker/templates/description.art +13 -0
  334. package/lib/routes/booru/mmda.ts +1 -2
  335. package/lib/routes/bossdesign/index.ts +2 -2
  336. package/lib/routes/bse/index.ts +14 -14
  337. package/lib/routes/bsky/feeds.ts +70 -0
  338. package/lib/routes/bsky/keyword.ts +15 -10
  339. package/lib/routes/bsky/posts.ts +2 -4
  340. package/lib/routes/bsky/utils.ts +34 -1
  341. package/lib/routes/btzj/index.ts +12 -14
  342. package/lib/routes/buaa/jiaowu.ts +1 -1
  343. package/lib/routes/buaa/lib/space/newbook.ts +0 -2
  344. package/lib/routes/buaa/news/index.ts +2 -2
  345. package/lib/routes/buct/cist.ts +58 -0
  346. package/lib/routes/buct/gr.ts +93 -0
  347. package/lib/routes/buct/jwc.ts +64 -0
  348. package/lib/routes/buct/namespace.ts +7 -0
  349. package/lib/routes/bulianglin/rss.ts +3 -3
  350. package/lib/routes/bullionvault/gold-news.ts +232 -0
  351. package/lib/routes/bullionvault/namespace.ts +9 -0
  352. package/lib/routes/bupt/jwc.ts +2 -2
  353. package/lib/routes/bupt/rczp.ts +3 -3
  354. package/lib/routes/bupt/scss.ts +98 -0
  355. package/lib/routes/byau/xinwen/index.ts +2 -2
  356. package/lib/routes/caai/utils.ts +0 -3
  357. package/lib/routes/caareviews/utils.ts +3 -6
  358. package/lib/routes/cahkms/index.ts +5 -7
  359. package/lib/routes/caixin/blog.ts +1 -1
  360. package/lib/routes/caixin/category.ts +9 -9
  361. package/lib/routes/caixin/database.ts +0 -2
  362. package/lib/routes/caixin/latest.ts +1 -1
  363. package/lib/routes/caixin/templates/article.art +6 -4
  364. package/lib/routes/caixin/utils-fulltext.ts +1 -1
  365. package/lib/routes/caixin/utils.ts +0 -3
  366. package/lib/routes/camchina/index.ts +2 -2
  367. package/lib/routes/cankaoxiaoxi/index.ts +20 -22
  368. package/lib/routes/capitalmind/insights.ts +40 -0
  369. package/lib/routes/capitalmind/namespace.ts +8 -0
  370. package/lib/routes/capitalmind/podcasts.ts +41 -0
  371. package/lib/routes/capitalmind/utils.ts +122 -0
  372. package/lib/routes/cara/likes.ts +1 -4
  373. package/lib/routes/cara/portfolio.ts +1 -1
  374. package/lib/routes/cara/timeline.ts +1 -4
  375. package/lib/routes/cara/utils.ts +0 -9
  376. package/lib/routes/cartoonmad/comic.ts +1 -3
  377. package/lib/routes/cas/cg/index.ts +5 -5
  378. package/lib/routes/cas/genetics/index.ts +2 -2
  379. package/lib/routes/casssp/news.ts +2 -2
  380. package/lib/routes/cast/index.ts +10 -10
  381. package/lib/routes/catti/news.ts +2 -2
  382. package/lib/routes/caus/index.ts +2 -2
  383. package/lib/routes/cbaigui/index.ts +0 -2
  384. package/lib/routes/cbndata/information.ts +250 -0
  385. package/lib/routes/cbndata/namespace.ts +9 -0
  386. package/lib/routes/cbndata/templates/description.art +17 -0
  387. package/lib/routes/cbpanet/index.ts +36 -36
  388. package/lib/routes/ccac/news.ts +3 -3
  389. package/lib/routes/cccmc/index.ts +24 -23
  390. package/lib/routes/ccf/ccfcv/index.ts +2 -4
  391. package/lib/routes/ccf/news.ts +2 -2
  392. package/lib/routes/ccf/tfbd/utils.ts +0 -3
  393. package/lib/routes/ccfa/index.ts +18 -20
  394. package/lib/routes/ccg/index.ts +181 -0
  395. package/lib/routes/ccg/namespace.ts +9 -0
  396. package/lib/routes/ccg/templates/description.art +21 -0
  397. package/lib/routes/ccreports/index.ts +3 -3
  398. package/lib/routes/cctv/category.ts +2 -2
  399. package/lib/routes/cctv/jx.ts +3 -3
  400. package/lib/routes/cctv/lm.ts +5 -5
  401. package/lib/routes/cctv/utils/news.ts +3 -3
  402. package/lib/routes/cctv/utils/xinwen1j1.ts +1 -1
  403. package/lib/routes/cctv/xwlb.ts +1 -1
  404. package/lib/routes/cde/index.ts +9 -9
  405. package/lib/routes/cde/xxgk.ts +26 -11
  406. package/lib/routes/cde/zdyz.ts +2 -2
  407. package/lib/routes/cdi/index.ts +2 -2
  408. package/lib/routes/cdu/cdrw.ts +80 -0
  409. package/lib/routes/cdu/tzggcdunews.ts +80 -0
  410. package/lib/routes/cdzjryb/project-list.ts +0 -2
  411. package/lib/routes/ce/district.ts +91 -0
  412. package/lib/routes/ce/namespace.ts +8 -0
  413. package/lib/routes/cebbank/all.ts +6 -8
  414. package/lib/routes/cebbank/history.ts +6 -8
  415. package/lib/routes/cfachina/analygarden.ts +2 -2
  416. package/lib/routes/cfr/index.ts +3 -2
  417. package/lib/routes/cfr/utils.ts +2 -10
  418. package/lib/routes/chaincatcher/home.ts +0 -2
  419. package/lib/routes/changba/user.ts +41 -47
  420. package/lib/routes/chaoxing/qk.ts +0 -2
  421. package/lib/routes/chaping/banner.ts +1 -1
  422. package/lib/routes/chaping/news.ts +10 -10
  423. package/lib/routes/chaping/newsflash.ts +1 -1
  424. package/lib/routes/cherrytimes/market.ts +35 -0
  425. package/lib/routes/cherrytimes/namespace.ts +6 -0
  426. package/lib/routes/chiculture/topic.ts +2 -2
  427. package/lib/routes/chikubi/category.ts +1 -0
  428. package/lib/routes/chikubi/index.ts +1 -0
  429. package/lib/routes/chikubi/navigation.ts +3 -2
  430. package/lib/routes/chikubi/nipple-video-category.ts +1 -0
  431. package/lib/routes/chikubi/nipple-video-maker.ts +1 -0
  432. package/lib/routes/chikubi/search.ts +1 -0
  433. package/lib/routes/chikubi/tag.ts +1 -0
  434. package/lib/routes/china/finance/finance.ts +4 -4
  435. package/lib/routes/china/news/highlights/news.ts +14 -18
  436. package/lib/routes/china/news/military/news.ts +11 -15
  437. package/lib/routes/chinacdc/index.ts +3 -5
  438. package/lib/routes/chinadaily/language.ts +324 -0
  439. package/lib/routes/chinadaily/namespace.ts +9 -0
  440. package/lib/routes/chinadaily/templates/description.art +21 -0
  441. package/lib/routes/chinadegrees/province.ts +33 -35
  442. package/lib/routes/chinaisa/index.ts +134 -134
  443. package/lib/routes/chinamoney/notice.ts +17 -17
  444. package/lib/routes/chinanews/index.ts +2 -2
  445. package/lib/routes/chinania/index.ts +31 -31
  446. package/lib/routes/chinaratings/credit-research.ts +3 -2
  447. package/lib/routes/chinathinktanks/viewpoint.ts +46 -46
  448. package/lib/routes/chinatimes/index.ts +110 -0
  449. package/lib/routes/chinatimes/namespace.ts +7 -0
  450. package/lib/routes/chinaventure/index.ts +5 -7
  451. package/lib/routes/{trending → chiphell}/namespace.ts +2 -2
  452. package/lib/routes/chiphell/portal.ts +82 -0
  453. package/lib/routes/chnmuseum/namespace.ts +10 -0
  454. package/lib/routes/chnmuseum/xingnew.ts +73 -0
  455. package/lib/routes/chnmuseum/xwzt.ts +67 -0
  456. package/lib/routes/chocolatey/namespace.ts +9 -0
  457. package/lib/routes/chocolatey/packages.ts +122 -0
  458. package/lib/routes/chongbuluo/index.ts +86 -0
  459. package/lib/routes/chongbuluo/namespace.ts +7 -0
  460. package/lib/routes/chsi/kyzx.ts +6 -6
  461. package/lib/routes/chuanliu/nice.ts +0 -2
  462. package/lib/routes/chuapp/chuapp.ts +147 -0
  463. package/lib/routes/chuapp/namespace.ts +7 -0
  464. package/lib/routes/chub/characters.ts +7 -6
  465. package/lib/routes/cib/whpj.ts +5 -5
  466. package/lib/routes/cih-index/namespace.ts +7 -0
  467. package/lib/routes/cih-index/report.ts +74 -0
  468. package/lib/routes/ciidbnu/index.ts +5 -5
  469. package/lib/routes/cisia/index.ts +31 -31
  470. package/lib/routes/civitai/discussions.ts +1 -0
  471. package/lib/routes/civitai/models.ts +1 -0
  472. package/lib/routes/civitai/user.ts +93 -0
  473. package/lib/routes/ciweimao/chapter.ts +1 -1
  474. package/lib/routes/cjlu/yjsy/index.ts +2 -2
  475. package/lib/routes/clickme/index.ts +1 -1
  476. package/lib/routes/cline/blog.ts +91 -0
  477. package/lib/routes/cline/namespace.ts +13 -0
  478. package/lib/routes/cls/depth.ts +2 -4
  479. package/lib/routes/cls/hot.ts +0 -2
  480. package/lib/routes/cls/subject.ts +0 -2
  481. package/lib/routes/cls/telegraph.ts +2 -4
  482. package/lib/routes/cma/channel.ts +20 -22
  483. package/lib/routes/cmde/index.ts +1 -1
  484. package/lib/routes/cmu/andypavlo/blog.ts +55 -0
  485. package/lib/routes/cmu/namespace.ts +7 -0
  486. package/lib/routes/cna/index.ts +4 -26
  487. package/lib/routes/cna/utils.ts +23 -0
  488. package/lib/routes/cna/web/index.ts +2 -22
  489. package/lib/routes/cnbeta/category.ts +2 -2
  490. package/lib/routes/cnbeta/namespace.ts +1 -1
  491. package/lib/routes/cnblogs/common.ts +0 -1
  492. package/lib/routes/cncf/index.ts +5 -5
  493. package/lib/routes/cncf/reports.ts +3 -3
  494. package/lib/routes/cneb/yjxw.ts +2 -2
  495. package/lib/routes/cngal/entry.ts +2 -4
  496. package/lib/routes/cngal/weekly.ts +4 -7
  497. package/lib/routes/cngold/index.ts +22 -22
  498. package/lib/routes/cnjxol/index.ts +0 -2
  499. package/lib/routes/cnki/debut.ts +7 -9
  500. package/lib/routes/cnki/journals.ts +11 -13
  501. package/lib/routes/cnki/utils.ts +0 -3
  502. package/lib/routes/cntheory/paper.ts +0 -2
  503. package/lib/routes/cntv/column.ts +4 -6
  504. package/lib/routes/cockroachlabs/blog.ts +113 -0
  505. package/lib/routes/cockroachlabs/namespace.ts +7 -0
  506. package/lib/routes/codeforces/contests.ts +4 -6
  507. package/lib/routes/coindesk/{index.ts → consensus-magazine.ts} +17 -21
  508. package/lib/routes/coindesk/namespace.ts +2 -1
  509. package/lib/routes/coindesk/news.ts +47 -0
  510. package/lib/routes/coindesk/utils.ts +26 -0
  511. package/lib/routes/cointelegraph/index.ts +106 -0
  512. package/lib/routes/cointelegraph/namespace.ts +7 -0
  513. package/lib/routes/colamanga/manga.ts +4 -4
  514. package/lib/routes/collabo-cafe/category.ts +37 -0
  515. package/lib/routes/collabo-cafe/index.ts +35 -0
  516. package/lib/routes/collabo-cafe/namespace.ts +9 -0
  517. package/lib/routes/collabo-cafe/parser.ts +29 -0
  518. package/lib/routes/collabo-cafe/tag.ts +37 -0
  519. package/lib/routes/comicskingdom/index.ts +1 -3
  520. package/lib/routes/commonhealth/index.ts +70 -0
  521. package/lib/routes/{copernicium → commonhealth}/namespace.ts +2 -2
  522. package/lib/routes/commonhealth/templates/description.art +2 -0
  523. package/lib/routes/consumer/index.ts +6 -6
  524. package/lib/routes/consumer/shopping-guide.ts +2 -2
  525. package/lib/routes/cool18/index.ts +73 -42
  526. package/lib/routes/coolapk/hot.ts +5 -5
  527. package/lib/routes/coolapk/toutiao.ts +2 -2
  528. package/lib/routes/coolapk/tuwen.ts +2 -2
  529. package/lib/routes/coolapk/utils.ts +5 -4
  530. package/lib/routes/coolbuy/index.ts +106 -0
  531. package/lib/routes/coolbuy/namespace.ts +9 -0
  532. package/lib/routes/coolbuy/templates/description.art +48 -0
  533. package/lib/routes/coolidge/film-guide.ts +60 -0
  534. package/lib/routes/coolidge/namespace.ts +7 -0
  535. package/lib/routes/coolidge/news.ts +65 -0
  536. package/lib/routes/coolidge/templates/description.art +4 -0
  537. package/lib/routes/coolpc/namespace.ts +7 -0
  538. package/lib/routes/coolpc/news.ts +53 -0
  539. package/lib/routes/coomer/index.ts +159 -0
  540. package/lib/routes/coomer/namespace.ts +1 -1
  541. package/lib/routes/coomer/templates/source.art +24 -0
  542. package/lib/routes/copymanga/comic.ts +14 -25
  543. package/lib/routes/cosplaytele/article.ts +21 -0
  544. package/lib/routes/cosplaytele/category.ts +54 -0
  545. package/lib/routes/cosplaytele/const.ts +4 -0
  546. package/lib/routes/cosplaytele/latest.ts +51 -0
  547. package/lib/routes/cosplaytele/namespace.ts +8 -0
  548. package/lib/routes/cosplaytele/popular.ts +74 -0
  549. package/lib/routes/cosplaytele/tag.ts +54 -0
  550. package/lib/routes/cosplaytele/types.ts +12 -0
  551. package/lib/routes/counter-strike/news.ts +3 -3
  552. package/lib/routes/cpcaauto/index.ts +23 -23
  553. package/lib/routes/cpcey/index.ts +5 -5
  554. package/lib/routes/cpta/handler.ts +5 -9
  555. package/lib/routes/cqwu/index.ts +2 -2
  556. package/lib/routes/crac/exam.ts +60 -0
  557. package/lib/routes/crac/index.ts +11 -6
  558. package/lib/routes/crac/namespace.ts +1 -0
  559. package/lib/routes/crac/templates/exam.art +54 -0
  560. package/lib/routes/creative-comic/book.ts +1 -3
  561. package/lib/routes/creative-comic/utils.ts +2 -2
  562. package/lib/routes/crush/index.ts +77 -0
  563. package/lib/routes/crush/namespace.ts +7 -0
  564. package/lib/routes/cryptoslate/index.ts +98 -0
  565. package/lib/routes/cryptoslate/namespace.ts +7 -0
  566. package/lib/routes/cs/index.ts +30 -30
  567. package/lib/routes/cs/video.ts +1 -1
  568. package/lib/routes/css-tricks/articles.ts +48 -0
  569. package/lib/routes/css-tricks/collections.ts +62 -0
  570. package/lib/routes/css-tricks/namespace.ts +8 -0
  571. package/lib/routes/css-tricks/popular.ts +39 -0
  572. package/lib/routes/css-tricks/utils.ts +103 -0
  573. package/lib/routes/cssn/iolaw.ts +3 -3
  574. package/lib/routes/cste/index.ts +2 -2
  575. package/lib/routes/csu/cse.ts +3 -3
  576. package/lib/routes/csu/mail.ts +2 -2
  577. package/lib/routes/csu/utils.ts +1 -1
  578. package/lib/routes/cts/news.ts +25 -24
  579. package/lib/routes/cuilingmag/index.ts +9 -12
  580. package/lib/routes/cupl/jwc.ts +69 -0
  581. package/lib/routes/cupl/namespace.ts +20 -0
  582. package/lib/routes/curius/links.ts +0 -2
  583. package/lib/routes/cursor/blog.ts +84 -0
  584. package/lib/routes/cursor/changelog.ts +105 -52
  585. package/lib/routes/cursor/namespace.ts +1 -1
  586. package/lib/routes/cw/master.ts +14 -14
  587. package/lib/routes/cw/utils.ts +7 -12
  588. package/lib/routes/cyzone/author.ts +1 -1
  589. package/lib/routes/cyzone/index.ts +8 -8
  590. package/lib/routes/cyzone/label.ts +1 -1
  591. package/lib/routes/cyzone/util.ts +8 -10
  592. package/lib/routes/cztv/daily.ts +0 -2
  593. package/lib/routes/cztv/zjxwlb.ts +0 -2
  594. package/lib/routes/dahecube/index.ts +2 -2
  595. package/lib/routes/daily/utils.ts +0 -2
  596. package/lib/routes/damai/activity.ts +0 -2
  597. package/lib/routes/dangdang/notice.ts +4 -4
  598. package/lib/routes/dapenti/utils.ts +1 -1
  599. package/lib/routes/dataguidance/index.ts +2 -2
  600. package/lib/routes/daum/potplayer.ts +257 -0
  601. package/lib/routes/dayanzai/index.ts +21 -23
  602. package/lib/routes/dbaplus/new.ts +392 -0
  603. package/lib/routes/dbaplus/rss.ts +3 -4
  604. package/lib/routes/dbaplus/templates/description.art +21 -0
  605. package/lib/routes/dcard/utils.ts +38 -37
  606. package/lib/routes/dcfever/news.ts +3 -3
  607. package/lib/routes/dcfever/reviews.ts +3 -3
  608. package/lib/routes/dcfever/trading-search.ts +1 -1
  609. package/lib/routes/dcfever/trading.ts +4 -4
  610. package/lib/routes/dcfever/utils.ts +0 -3
  611. package/lib/routes/ddosi/category.ts +3 -3
  612. package/lib/routes/ddosi/index.ts +3 -3
  613. package/lib/routes/deadline/posts.ts +0 -2
  614. package/lib/routes/decrypt/index.ts +115 -0
  615. package/lib/routes/decrypt/namespace.ts +7 -0
  616. package/lib/routes/dedao/index.ts +3 -3
  617. package/lib/routes/dedao/knowledge.ts +1 -3
  618. package/lib/routes/dedao/list.ts +1 -1
  619. package/lib/routes/dedao/user.ts +3 -5
  620. package/lib/routes/deepl/blog.ts +421 -0
  621. package/lib/routes/deepl/namespace.ts +9 -0
  622. package/lib/routes/deepl/templates/description.art +21 -0
  623. package/lib/routes/deeplearning/the-batch.ts +25 -27
  624. package/lib/routes/deepmind/blog.ts +1 -1
  625. package/lib/routes/deepseek/news.ts +2 -2
  626. package/lib/routes/dehenglaw/index.ts +3 -5
  627. package/lib/routes/dev.to/guides.ts +100 -0
  628. package/lib/routes/dev.to/namespace.ts +8 -0
  629. package/lib/routes/dev.to/top.ts +105 -0
  630. package/lib/routes/dewu/declaration.ts +5 -5
  631. package/lib/routes/dgut/jwb.ts +73 -0
  632. package/lib/routes/dgut/namespace.ts +9 -0
  633. package/lib/routes/dhu/jiaowu/news.ts +2 -2
  634. package/lib/routes/dhu/yjs/news.ts +2 -2
  635. package/lib/routes/dhu/yjs/zs.ts +2 -2
  636. package/lib/routes/diandong/news.ts +4 -4
  637. package/lib/routes/diariofruticola/filtro.ts +130 -0
  638. package/lib/routes/diariofruticola/namespace.ts +9 -0
  639. package/lib/routes/diershoubing/news.ts +0 -2
  640. package/lib/routes/digitalcameraworld/news.ts +1 -1
  641. package/lib/routes/digitalpolicyalert/activity-tracker.ts +135 -0
  642. package/lib/routes/digitalpolicyalert/namespace.ts +9 -0
  643. package/lib/routes/discord/channel.ts +0 -2
  644. package/lib/routes/discord/search.ts +0 -3
  645. package/lib/routes/discuz/discuz.ts +7 -9
  646. package/lib/routes/disinfo/publications.ts +3 -3
  647. package/lib/routes/dlnews/category.ts +2 -7
  648. package/lib/routes/dlsite/campaign.ts +2 -1
  649. package/lib/routes/dlsite/ci-en/article.ts +2 -1
  650. package/lib/routes/dlsite/new.ts +4 -3
  651. package/lib/routes/dlsite/utils.ts +0 -3
  652. package/lib/routes/dlsite/z-index/index.ts +3 -0
  653. package/lib/routes/dmzj/news.ts +7 -7
  654. package/lib/routes/dn/news.ts +11 -13
  655. package/lib/routes/dnaindia/common.ts +26 -8
  656. package/lib/routes/dockerhub/build.ts +1 -1
  657. package/lib/routes/dockerhub/tag.ts +1 -1
  658. package/lib/routes/dockerhub/utils.ts +1 -1
  659. package/lib/routes/docschina/weekly.ts +2 -2
  660. package/lib/routes/domp4/detail.ts +8 -6
  661. package/lib/routes/domp4/latest-movie-bt.ts +10 -10
  662. package/lib/routes/domp4/latest.ts +8 -8
  663. package/lib/routes/domp4/namespace.ts +2 -8
  664. package/lib/routes/domp4/utils.ts +5 -5
  665. package/lib/routes/dongqiudi/daily.ts +1 -1
  666. package/lib/routes/dongqiudi/player-news.ts +1 -1
  667. package/lib/routes/dongqiudi/result.ts +1 -1
  668. package/lib/routes/dongqiudi/special.ts +3 -3
  669. package/lib/routes/dongqiudi/team-news.ts +1 -1
  670. package/lib/routes/dongqiudi/top-news.ts +3 -3
  671. package/lib/routes/dora-world/article.ts +3 -3
  672. package/lib/routes/douban/book/latest.ts +2 -2
  673. package/lib/routes/douban/book/rank.ts +2 -2
  674. package/lib/routes/douban/channel/subject.ts +2 -2
  675. package/lib/routes/douban/channel/topic.ts +2 -2
  676. package/lib/routes/douban/commercialpress/latest.ts +3 -3
  677. package/lib/routes/douban/movie/coming.ts +0 -3
  678. package/lib/routes/douban/other/celebrity.ts +9 -13
  679. package/lib/routes/douban/other/doulist.ts +16 -16
  680. package/lib/routes/douban/other/explore-column.ts +6 -6
  681. package/lib/routes/douban/other/explore.ts +23 -29
  682. package/lib/routes/douban/other/group.ts +2 -2
  683. package/lib/routes/douban/other/jobs.ts +7 -9
  684. package/lib/routes/douban/other/later.ts +3 -3
  685. package/lib/routes/douban/other/latest-music.ts +3 -3
  686. package/lib/routes/douban/other/list.ts +26 -28
  687. package/lib/routes/douban/other/playing.ts +1 -1
  688. package/lib/routes/douban/other/recommended.ts +3 -5
  689. package/lib/routes/douban/other/replied.ts +3 -3
  690. package/lib/routes/douban/other/replies.ts +3 -3
  691. package/lib/routes/douban/other/topic.ts +1 -1
  692. package/lib/routes/douban/other/weekly-best.ts +2 -4
  693. package/lib/routes/douban/people/status.ts +17 -17
  694. package/lib/routes/douban/people/wish.ts +5 -5
  695. package/lib/routes/douyin/hashtag.ts +1 -1
  696. package/lib/routes/douyin/live.ts +2 -2
  697. package/lib/routes/douyin/types.ts +1 -5
  698. package/lib/routes/douyin/user.ts +1 -1
  699. package/lib/routes/douyin/utils.ts +0 -3
  700. package/lib/routes/douyu/group.ts +2 -4
  701. package/lib/routes/douyu/post.ts +0 -2
  702. package/lib/routes/dribbble/utils.ts +0 -3
  703. package/lib/routes/dtcj/datahero.ts +2 -2
  704. package/lib/routes/dtcj/datainsight.ts +5 -5
  705. package/lib/routes/duozhuayu/search.ts +0 -2
  706. package/lib/routes/dushu/fuzhou/index.ts +0 -2
  707. package/lib/routes/dw/rss.ts +2 -2
  708. package/lib/routes/dw/utils.ts +0 -2
  709. package/lib/routes/dx2025/index.ts +21 -21
  710. package/lib/routes/dytt/index.ts +299 -56
  711. package/lib/routes/dytt/namespace.ts +1 -1
  712. package/lib/routes/e-hentai/index.ts +3 -2
  713. package/lib/routes/ea/apex-news.ts +104 -0
  714. package/lib/routes/ea/namespace.ts +6 -0
  715. package/lib/routes/eagle/blog.ts +3 -3
  716. package/lib/routes/eagle/changelog.ts +28 -32
  717. package/lib/routes/earthquake/ceic.ts +8 -8
  718. package/lib/routes/eastday/24.ts +5 -5
  719. package/lib/routes/eastmoney/report/index.ts +3 -6
  720. package/lib/routes/eastmoney/search/index.ts +1 -1
  721. package/lib/routes/eastmoney/ttjj/user.ts +1 -1
  722. package/lib/routes/ebc/namespace.ts +6 -0
  723. package/lib/routes/ebc/realtime.ts +94 -0
  724. package/lib/routes/ecnu/contest.ts +0 -2
  725. package/lib/routes/ecnu/jwc.ts +3 -3
  726. package/lib/routes/economist/espresso.ts +1 -1
  727. package/lib/routes/economist/full.ts +1 -1
  728. package/lib/routes/ecust/jwc/notice.ts +2 -2
  729. package/lib/routes/eeo/kuaixun.ts +154 -0
  730. package/lib/routes/eeo/namespace.ts +9 -0
  731. package/lib/routes/eeo/templates/description.art +7 -0
  732. package/lib/routes/ehentai/ehapi.ts +4 -4
  733. package/lib/routes/ehentai/favorites.ts +8 -2
  734. package/lib/routes/ehentai/search.ts +3 -2
  735. package/lib/routes/ehentai/tag.ts +3 -2
  736. package/lib/routes/ekantipur/issue.ts +3 -3
  737. package/lib/routes/elecfans/article.ts +64 -0
  738. package/lib/routes/elecfans/namespace.ts +7 -0
  739. package/lib/routes/elecfans/soft.ts +69 -0
  740. package/lib/routes/eleduck/posts.ts +17 -17
  741. package/lib/routes/elsevier/issue.ts +3 -5
  742. package/lib/routes/elsevier/journal.ts +3 -5
  743. package/lib/routes/embassy/supported-list.ts +1 -1
  744. package/lib/routes/engineering/namespace.ts +8 -0
  745. package/lib/routes/engineering/tag.ts +55 -0
  746. package/lib/routes/englishhome/index.ts +55 -0
  747. package/lib/routes/englishhome/namespace.ts +6 -0
  748. package/lib/routes/epicgames/index.ts +1 -3
  749. package/lib/routes/eprice/rss.ts +3 -5
  750. package/lib/routes/eshukan/academic.ts +0 -2
  751. package/lib/routes/espn/news.ts +1 -4
  752. package/lib/routes/esquirehk/tag.ts +1 -4
  753. package/lib/routes/eventbrite/events.ts +152 -0
  754. package/lib/routes/eventbrite/namespace.ts +7 -0
  755. package/lib/routes/eventernote/actors.ts +62 -65
  756. package/lib/routes/everia/article.ts +21 -0
  757. package/lib/routes/everia/category.ts +55 -0
  758. package/lib/routes/everia/const.ts +4 -0
  759. package/lib/routes/everia/latest.ts +50 -0
  760. package/lib/routes/everia/namespace.ts +6 -0
  761. package/lib/routes/everia/search.ts +46 -0
  762. package/lib/routes/everia/tag.ts +55 -0
  763. package/lib/routes/expats/czech-news.ts +272 -0
  764. package/lib/routes/expats/namespace.ts +9 -0
  765. package/lib/routes/famitsu/category.ts +3 -5
  766. package/lib/routes/fanbox/index.ts +1 -0
  767. package/lib/routes/fanbox/types.ts +0 -4
  768. package/lib/routes/fanbox/utils.ts +1 -4
  769. package/lib/routes/fangchan/list.ts +222 -0
  770. package/lib/routes/fangchan/namespace.ts +9 -0
  771. package/lib/routes/fangchan/templates/description.art +7 -0
  772. package/lib/routes/fansly/post.ts +1 -0
  773. package/lib/routes/fansly/tag.ts +1 -0
  774. package/lib/routes/fansly/utils.ts +0 -3
  775. package/lib/routes/fantia/search.ts +37 -36
  776. package/lib/routes/fantia/user.ts +2 -1
  777. package/lib/routes/fantube/creator.ts +69 -0
  778. package/lib/routes/fantube/namespace.ts +7 -0
  779. package/lib/routes/fantube/templates/post.art +17 -0
  780. package/lib/routes/fantube/types.ts +100 -0
  781. package/lib/routes/fantube/utils.ts +268 -0
  782. package/lib/routes/farcaster/namespace.ts +7 -0
  783. package/lib/routes/farcaster/user.ts +46 -0
  784. package/lib/routes/farmatters/index.ts +0 -2
  785. package/lib/routes/fashionnetwork/index.ts +10 -12
  786. package/lib/routes/fashionnetwork/namespace.ts +1 -1
  787. package/lib/routes/fastbull/express-news.ts +1 -1
  788. package/lib/routes/fastbull/news.ts +1 -3
  789. package/lib/routes/fediverse/timeline.ts +1 -1
  790. package/lib/routes/feng/forum.ts +2 -4
  791. package/lib/routes/ff14/ff14-global.ts +6 -8
  792. package/lib/routes/ff14/ff14-zh.ts +2 -4
  793. package/lib/routes/fffdm/manhua/manhua.ts +1 -3
  794. package/lib/routes/finology/category.ts +17 -17
  795. package/lib/routes/finology/tag.ts +31 -31
  796. package/lib/routes/finviz/news.ts +3 -3
  797. package/lib/routes/finviz/quote.ts +14 -16
  798. package/lib/routes/fisher-spb/news.ts +3 -5
  799. package/lib/routes/fishshell/index.ts +3 -3
  800. package/lib/routes/fjksbm/index.ts +3 -3
  801. package/lib/routes/flyert/creditcard.ts +24 -24
  802. package/lib/routes/flyert/namespace.ts +1 -1
  803. package/lib/routes/flyert/preferential.ts +3 -3
  804. package/lib/routes/flyert/util.ts +0 -3
  805. package/lib/routes/flyert/utils.ts +17 -11
  806. package/lib/routes/focustaiwan/index.ts +5 -7
  807. package/lib/routes/followin/index.ts +7 -7
  808. package/lib/routes/followin/news.ts +1 -1
  809. package/lib/routes/followin/utils.ts +0 -3
  810. package/lib/routes/foreignaffairs/namespace.ts +7 -0
  811. package/lib/routes/foreignaffairs/rss.ts +55 -0
  812. package/lib/routes/foresightnews/article.ts +1 -1
  813. package/lib/routes/foresightnews/column.ts +1 -1
  814. package/lib/routes/foresightnews/index.ts +1 -1
  815. package/lib/routes/foresightnews/news.ts +1 -1
  816. package/lib/routes/foresightnews/util.ts +9 -14
  817. package/lib/routes/forklog/index.ts +72 -0
  818. package/lib/routes/forklog/namespace.ts +7 -0
  819. package/lib/routes/fortnite/news.ts +4 -4
  820. package/lib/routes/fortunechina/index.ts +2 -2
  821. package/lib/routes/fosshub/index.ts +0 -2
  822. package/lib/routes/freecomputerbooks/index.ts +0 -2
  823. package/lib/routes/freewechat/profile.ts +7 -1
  824. package/lib/routes/freexcomic/book.ts +4 -1
  825. package/lib/routes/ft/myft.ts +4 -4
  826. package/lib/routes/ftm/index.ts +1 -1
  827. package/lib/routes/furaffinity/art.ts +1 -0
  828. package/lib/routes/furaffinity/browse.ts +2 -1
  829. package/lib/routes/furaffinity/commissions.ts +1 -0
  830. package/lib/routes/furaffinity/home.ts +2 -1
  831. package/lib/routes/furaffinity/journal-comments.ts +1 -0
  832. package/lib/routes/furaffinity/journals.ts +2 -1
  833. package/lib/routes/furaffinity/search.ts +2 -1
  834. package/lib/routes/furaffinity/shouts.ts +2 -1
  835. package/lib/routes/furaffinity/status.ts +2 -1
  836. package/lib/routes/furaffinity/submission-comments.ts +1 -0
  837. package/lib/routes/furaffinity/user.ts +1 -0
  838. package/lib/routes/furaffinity/watchers.ts +1 -0
  839. package/lib/routes/furaffinity/watching.ts +1 -0
  840. package/lib/routes/furstar/artists.ts +2 -2
  841. package/lib/routes/furstar/utils.ts +14 -19
  842. package/lib/routes/futunn/main.ts +0 -2
  843. package/lib/routes/fx-markets/channel.ts +14 -16
  844. package/lib/routes/fx678/kx.ts +3 -3
  845. package/lib/routes/fxiaoke/crm.ts +2 -2
  846. package/lib/routes/fzmtr/announcements.ts +3 -3
  847. package/lib/routes/gameapps/index.ts +2 -4
  848. package/lib/routes/gamebase/news.ts +2 -5
  849. package/lib/routes/gamekee/namespace.ts +6 -0
  850. package/lib/routes/gamekee/news.ts +64 -0
  851. package/lib/routes/gamer/ani/anime.ts +1 -1
  852. package/lib/routes/gamer/ani/new-anime.ts +1 -1
  853. package/lib/routes/gamer/gnn-index.ts +12 -7
  854. package/lib/routes/gamer/hot.ts +9 -9
  855. package/lib/routes/gamer520/index.ts +3 -3
  856. package/lib/routes/gamersecret/index.ts +14 -14
  857. package/lib/routes/gamersky/utils.ts +1 -1
  858. package/lib/routes/gaoyu/blog.ts +145 -0
  859. package/lib/routes/gaoyu/namespace.ts +9 -0
  860. package/lib/routes/gaoyu/templates/description.art +7 -0
  861. package/lib/routes/gc.ca/namespace.ts +7 -0
  862. package/lib/routes/gc.ca/pm-news.ts +78 -0
  863. package/lib/routes/gcores/articles.ts +50 -0
  864. package/lib/routes/gcores/categories.ts +126 -0
  865. package/lib/routes/gcores/collections.ts +126 -0
  866. package/lib/routes/gcores/namespace.ts +1 -0
  867. package/lib/routes/gcores/news.ts +50 -0
  868. package/lib/routes/gcores/parser.ts +281 -0
  869. package/lib/routes/gcores/program-previews.ts +47 -0
  870. package/lib/routes/gcores/radio.ts +6 -8
  871. package/lib/routes/gcores/tags.ts +126 -0
  872. package/lib/routes/gcores/templates/description.art +67 -0
  873. package/lib/routes/gcores/topics.ts +60 -0
  874. package/lib/routes/gcores/util.ts +173 -0
  875. package/lib/routes/gcores/videos.ts +49 -0
  876. package/lib/routes/gdsrx/index.ts +8 -8
  877. package/lib/routes/gdufs/xwxy/index.ts +196 -0
  878. package/lib/routes/gdut/oa-news.ts +85 -84
  879. package/lib/routes/geekpark/index.ts +11 -13
  880. package/lib/routes/gelbooru/namespace.ts +7 -0
  881. package/lib/routes/gelbooru/post.ts +114 -0
  882. package/lib/routes/gelbooru/templates/description.art +19 -0
  883. package/lib/routes/gelbooru/utils.ts +40 -0
  884. package/lib/routes/gelonghui/home.ts +3 -3
  885. package/lib/routes/gelonghui/hot-article.ts +1 -1
  886. package/lib/routes/gelonghui/keyword.ts +1 -1
  887. package/lib/routes/gelonghui/live.ts +1 -3
  888. package/lib/routes/gelonghui/subject.ts +1 -1
  889. package/lib/routes/gelonghui/user.ts +1 -1
  890. package/lib/routes/genossenschaften/index.ts +2 -3
  891. package/lib/routes/geocaching/blogs.ts +5 -4
  892. package/lib/routes/gettr/user.ts +1 -3
  893. package/lib/routes/gf-cn/news.ts +2 -2
  894. package/lib/routes/gihyo/group.ts +17 -19
  895. package/lib/routes/gitcode/namespace.ts +7 -0
  896. package/lib/routes/gitcode/repos/commits.ts +67 -0
  897. package/lib/routes/github/activity.ts +3 -2
  898. package/lib/routes/github/comments.ts +2 -2
  899. package/lib/routes/github/contributors.ts +1 -1
  900. package/lib/routes/github/issue.ts +1 -1
  901. package/lib/routes/github/namespace.ts +1 -1
  902. package/lib/routes/github/private-feed.ts +229 -0
  903. package/lib/routes/github/pulse.ts +0 -2
  904. package/lib/routes/github/search.ts +5 -5
  905. package/lib/routes/github/star.ts +2 -2
  906. package/lib/routes/github/topic.ts +4 -4
  907. package/lib/routes/github/trending.ts +1 -3
  908. package/lib/routes/gitpod/blog.ts +0 -2
  909. package/lib/routes/gitstar-ranking/index.ts +150 -0
  910. package/lib/routes/gitstar-ranking/namespace.ts +9 -0
  911. package/lib/routes/gitstar-ranking/templates/description.art +38 -0
  912. package/lib/routes/gmu/namespace.ts +7 -0
  913. package/lib/routes/gmu/news.ts +136 -0
  914. package/lib/routes/gmu/yjs.ts +173 -0
  915. package/lib/routes/go/jihs/idwr.ts +136 -0
  916. package/lib/routes/gofans/index.ts +0 -2
  917. package/lib/routes/google/citations.ts +2 -2
  918. package/lib/routes/google/doodles.ts +1 -1
  919. package/lib/routes/google/extension.ts +9 -10
  920. package/lib/routes/google/fonts.ts +2 -4
  921. package/lib/routes/google/jules.ts +63 -0
  922. package/lib/routes/google/news.ts +1 -3
  923. package/lib/routes/google/scholar.ts +2 -2
  924. package/lib/routes/google/search.ts +18 -32
  925. package/lib/routes/gov/ah/kjt.ts +18 -18
  926. package/lib/routes/gov/caac/cjwt.ts +1 -3
  927. package/lib/routes/gov/cbirc/index.ts +54 -53
  928. package/lib/routes/gov/chinatax/latest.ts +3 -3
  929. package/lib/routes/gov/chongqing/gzw.ts +2 -2
  930. package/lib/routes/gov/chongqing/sydwgkzp.ts +22 -6
  931. package/lib/routes/gov/cmse/fxrw.ts +0 -2
  932. package/lib/routes/gov/cmse/index.ts +0 -2
  933. package/lib/routes/gov/csrc/csrc.ts +101 -101
  934. package/lib/routes/gov/csrc/news.ts +1 -3
  935. package/lib/routes/gov/customs/list.ts +9 -4
  936. package/lib/routes/gov/forestry/gjlckjdjt.ts +7 -9
  937. package/lib/routes/gov/general/general.ts +1 -4
  938. package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +0 -2
  939. package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +0 -2
  940. package/lib/routes/gov/hangzhou/namespace.ts +9 -0
  941. package/lib/routes/gov/hangzhou/templates/jbxx.art +173 -0
  942. package/lib/routes/gov/hangzhou/zjzwfw.ts +89 -0
  943. package/lib/routes/gov/hangzhou/zwfw.ts +110 -0
  944. package/lib/routes/gov/hebei/czt.ts +2 -2
  945. package/lib/routes/gov/huizhou/zwgk/index.ts +3 -3
  946. package/lib/routes/gov/hunan/changsha/major-email.ts +3 -3
  947. package/lib/routes/gov/jiangsu/wlt/index.ts +2 -5
  948. package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +16 -18
  949. package/lib/routes/gov/lswz/index.ts +32 -32
  950. package/lib/routes/gov/maonan/maonan.ts +2 -2
  951. package/lib/routes/gov/mee/ywdt.ts +3 -3
  952. package/lib/routes/gov/mem/namespace.ts +7 -0
  953. package/lib/routes/gov/mem/sgcc.ts +2 -2
  954. package/lib/routes/gov/mem/zfxxgkpt.ts +96 -0
  955. package/lib/routes/gov/mfa/wjdt.ts +10 -10
  956. package/lib/routes/gov/miit/wjfb.ts +6 -6
  957. package/lib/routes/gov/miit/yjzj.ts +6 -6
  958. package/lib/routes/gov/miit/zcwj.ts +1 -1
  959. package/lib/routes/gov/moa/gjs.ts +211 -0
  960. package/lib/routes/gov/moa/moa.ts +3 -3
  961. package/lib/routes/gov/moa/zdscxx.ts +15 -13
  962. package/lib/routes/gov/moe/moe.ts +37 -39
  963. package/lib/routes/gov/mof/bond.ts +3 -3
  964. package/lib/routes/gov/mof/gss.ts +82 -0
  965. package/lib/routes/gov/moj/aac/news.ts +2 -2
  966. package/lib/routes/gov/mot/index.ts +157 -53
  967. package/lib/routes/gov/nea/ghs.ts +70 -37
  968. package/lib/routes/gov/npc/index.ts +2 -2
  969. package/lib/routes/gov/nrta/dsj.ts +15 -16
  970. package/lib/routes/gov/nrta/news.ts +5 -5
  971. package/lib/routes/gov/pbc/goutongjiaoliu.ts +5 -5
  972. package/lib/routes/gov/pbc/gzlw.ts +3 -3
  973. package/lib/routes/gov/pbc/namespace.ts +28 -28
  974. package/lib/routes/gov/pbc/trade-announcement.ts +4 -4
  975. package/lib/routes/gov/pbc/zcyj.ts +3 -3
  976. package/lib/routes/gov/safe/util.ts +0 -3
  977. package/lib/routes/gov/samr/xgzlyhd.ts +91 -93
  978. package/lib/routes/gov/sh/fgw/index.ts +3 -5
  979. package/lib/routes/gov/sh/rsj/ksxm.ts +3 -5
  980. package/lib/routes/gov/sh/wgj/wgj.ts +3 -5
  981. package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +14 -18
  982. package/lib/routes/gov/shaanxi/kjt.ts +2 -2
  983. package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +5 -5
  984. package/lib/routes/gov/shenzhen/szlh/index.ts +77 -0
  985. package/lib/routes/gov/shenzhen/szlh/namespace.ts +8 -0
  986. package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +2 -2
  987. package/lib/routes/gov/shenzhen/zjj/index.ts +2 -2
  988. package/lib/routes/gov/shenzhen/zzb/index.ts +5 -5
  989. package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +11 -14
  990. package/lib/routes/gov/sichuan/deyang/mztoday.ts +2 -4
  991. package/lib/routes/gov/stats/index.ts +4 -10
  992. package/lib/routes/gov/suzhou/news.ts +15 -15
  993. package/lib/routes/gov/taiyuan/rsj.ts +5 -5
  994. package/lib/routes/gov/tianjin/tjftz.ts +53 -0
  995. package/lib/routes/gov/tianjin/tjrcgzw.ts +51 -0
  996. package/lib/routes/gov/xuzhou/hrss.ts +2 -2
  997. package/lib/routes/gov/zhejiang/gwy.ts +22 -22
  998. package/lib/routes/gov/zhengce/govall.ts +9 -9
  999. package/lib/routes/gq/news.ts +1 -1
  1000. package/lib/routes/grainoil/category.ts +207 -0
  1001. package/lib/routes/grainoil/namespace.ts +9 -0
  1002. package/lib/routes/greasyfork/feedback.ts +1 -1
  1003. package/lib/routes/greasyfork/versions.ts +1 -1
  1004. package/lib/routes/grist/featured.ts +1 -1
  1005. package/lib/routes/grist/index.ts +1 -1
  1006. package/lib/routes/grist/series.ts +1 -1
  1007. package/lib/routes/grist/topic.ts +44 -44
  1008. package/lib/routes/grist/utils.ts +5 -4
  1009. package/lib/routes/guancha/index.ts +2 -2
  1010. package/lib/routes/guancha/member.ts +3 -3
  1011. package/lib/routes/guangdiu/cheaps.ts +3 -3
  1012. package/lib/routes/guangdiu/index.ts +3 -3
  1013. package/lib/routes/guangdiu/rank.ts +3 -3
  1014. package/lib/routes/guangdiu/search.ts +3 -3
  1015. package/lib/routes/guangzhoumetro/news.ts +3 -3
  1016. package/lib/routes/guduodata/daily.ts +0 -2
  1017. package/lib/routes/gumroad/index.ts +0 -2
  1018. package/lib/routes/guokr/channel.ts +3 -3
  1019. package/lib/routes/guokr/scientific.ts +1 -1
  1020. package/lib/routes/guozaoke/index.ts +34 -35
  1021. package/lib/routes/gxmzu/lib.ts +2 -2
  1022. package/lib/routes/gxmzu/utils/index.ts +2 -2
  1023. package/lib/routes/gzdaily/app.ts +7 -9
  1024. package/lib/routes/hackernews/index.ts +6 -6
  1025. package/lib/routes/hacking8/index.ts +2 -2
  1026. package/lib/routes/hackyournews/index.ts +5 -5
  1027. package/lib/routes/hafu/news.ts +2 -2
  1028. package/lib/routes/hafu/utils.ts +90 -99
  1029. package/lib/routes/hakkatv/type.ts +2 -2
  1030. package/lib/routes/hameln/chapter.ts +1 -1
  1031. package/lib/routes/hanime1/namespace.ts +7 -0
  1032. package/lib/routes/hanime1/previews.ts +98 -0
  1033. package/lib/routes/hanime1/search.ts +98 -0
  1034. package/lib/routes/harvard/health/blog.ts +1 -1
  1035. package/lib/routes/hashnode/blog.ts +0 -2
  1036. package/lib/routes/hbr/topic.ts +6 -6
  1037. package/lib/routes/hdu/cs/notice.ts +10 -15
  1038. package/lib/routes/hdu/cs/pg.ts +10 -15
  1039. package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +0 -2
  1040. package/lib/routes/hedwig/namespace.ts +7 -0
  1041. package/lib/routes/hedwig/posts.ts +60 -0
  1042. package/lib/routes/hellobtc/information.ts +4 -4
  1043. package/lib/routes/hellobtc/kepu.ts +6 -6
  1044. package/lib/routes/hellobtc/news.ts +4 -4
  1045. package/lib/routes/hellogithub/article.ts +2 -2
  1046. package/lib/routes/hellogithub/index.ts +3 -3
  1047. package/lib/routes/hellogithub/report.ts +2 -4
  1048. package/lib/routes/hellogithub/volume.ts +0 -2
  1049. package/lib/routes/hex-rays/index.ts +1 -1
  1050. package/lib/routes/hfut/hf/notice.ts +2 -2
  1051. package/lib/routes/hfut/xc/notice.ts +2 -2
  1052. package/lib/routes/hicairo/rss.ts +3 -3
  1053. package/lib/routes/hinatazaka46/blog.ts +35 -35
  1054. package/lib/routes/hiring.cafe/jobs.ts +0 -3
  1055. package/lib/routes/hit/hitgs.ts +240 -54
  1056. package/lib/routes/hit/namespace.ts +1 -1
  1057. package/lib/routes/hit/templates/description.art +7 -0
  1058. package/lib/routes/hitcon/zeroday.ts +3 -6
  1059. package/lib/routes/hitsz/article.ts +2 -2
  1060. package/lib/routes/hitsz/due-tzgg.ts +110 -0
  1061. package/lib/routes/hitsz/due.ts +172 -0
  1062. package/lib/routes/hitwh/today.ts +3 -3
  1063. package/lib/routes/hizu/index.ts +25 -25
  1064. package/lib/routes/hk01/utils.ts +0 -3
  1065. package/lib/routes/hkej/index.ts +13 -17
  1066. package/lib/routes/hkepc/index.ts +4 -4
  1067. package/lib/routes/hket/index.ts +4 -6
  1068. package/lib/routes/hkjunkcall/index.ts +3 -3
  1069. package/lib/routes/hkushop/namespace.ts +9 -0
  1070. package/lib/routes/hkushop/vinyl-or-picture-lp.ts +87 -0
  1071. package/lib/routes/hlju/namespace.ts +8 -0
  1072. package/lib/routes/hlju/news.ts +141 -0
  1073. package/lib/routes/hljucm/yjsy.ts +2 -2
  1074. package/lib/routes/hnrb/index.ts +11 -11
  1075. package/lib/routes/hongkong/dh.ts +3 -3
  1076. package/lib/routes/hostmonit/cloudflareyes.ts +2 -4
  1077. package/lib/routes/hottoys/index.ts +2 -2
  1078. package/lib/routes/hotukdeals/index.ts +3 -3
  1079. package/lib/routes/houxu/events.ts +0 -2
  1080. package/lib/routes/houxu/index.ts +0 -2
  1081. package/lib/routes/houxu/memory.ts +0 -2
  1082. package/lib/routes/howtoforge/rss.ts +3 -3
  1083. package/lib/routes/hoyolab/news.ts +21 -23
  1084. package/lib/routes/hpoi/all.ts +1 -1
  1085. package/lib/routes/hpoi/banner-item.ts +28 -11
  1086. package/lib/routes/hpoi/character.ts +1 -1
  1087. package/lib/routes/hpoi/info.ts +68 -23
  1088. package/lib/routes/hpoi/user.ts +3 -3
  1089. package/lib/routes/hpoi/utils.ts +3 -3
  1090. package/lib/routes/hpoi/work.ts +1 -1
  1091. package/lib/routes/hrbeu/cec/list.ts +82 -0
  1092. package/lib/routes/hrbeu/gx/card.ts +3 -3
  1093. package/lib/routes/hrbeu/gx/list.ts +3 -3
  1094. package/lib/routes/hrbeu/job/bigemploy.ts +3 -3
  1095. package/lib/routes/hrbeu/job/calendar.ts +5 -5
  1096. package/lib/routes/hrbeu/job/list.ts +5 -5
  1097. package/lib/routes/hrbeu/uae/news.ts +5 -5
  1098. package/lib/routes/hrbeu/ugs/news.ts +21 -21
  1099. package/lib/routes/hrbeu/yjsy/list.ts +5 -5
  1100. package/lib/routes/hrbust/cs.ts +100 -0
  1101. package/lib/routes/hrbust/gzc.ts +97 -0
  1102. package/lib/routes/hrbust/jwzx.ts +8 -8
  1103. package/lib/routes/hrbust/lib.ts +97 -0
  1104. package/lib/routes/hrbust/news.ts +30 -15
  1105. package/lib/routes/hrbust/nic.ts +97 -0
  1106. package/lib/routes/huanqiu/index.ts +2 -2
  1107. package/lib/routes/huawei/developer/harmonyos/samplecode.ts +69 -0
  1108. package/lib/routes/huawei/namespace.ts +7 -0
  1109. package/lib/routes/hubu/index.ts +3 -3
  1110. package/lib/routes/hubu/zhxy.ts +19 -19
  1111. package/lib/routes/hudsonrivertrading/index.ts +122 -0
  1112. package/lib/routes/hudsonrivertrading/namespace.ts +7 -0
  1113. package/lib/routes/huggingface/blog-community.ts +126 -0
  1114. package/lib/routes/huggingface/daily-papers.ts +45 -9
  1115. package/lib/routes/huijin-inv/namespace.ts +7 -0
  1116. package/lib/routes/huijin-inv/news.ts +83 -0
  1117. package/lib/routes/hunau/gfxy/index.ts +2 -2
  1118. package/lib/routes/hunau/ied.ts +3 -3
  1119. package/lib/routes/hunau/jwc.ts +2 -2
  1120. package/lib/routes/hunau/xky/index.ts +2 -2
  1121. package/lib/routes/hupu/all.ts +0 -2
  1122. package/lib/routes/hupu/bbs.ts +0 -2
  1123. package/lib/routes/hupu/index.ts +170 -74
  1124. package/lib/routes/hupu/templates/description.art +1 -1
  1125. package/lib/routes/hupu/types.ts +163 -0
  1126. package/lib/routes/hust/aia/notice.ts +2 -2
  1127. package/lib/routes/hust/gs.ts +32 -32
  1128. package/lib/routes/hust/mse.ts +67 -67
  1129. package/lib/routes/huxiu/brief-column.ts +1 -1
  1130. package/lib/routes/huxiu/channel.ts +9 -9
  1131. package/lib/routes/huxiu/club.ts +1 -1
  1132. package/lib/routes/huxiu/collection.ts +1 -1
  1133. package/lib/routes/huxiu/member.ts +3 -3
  1134. package/lib/routes/huxiu/moment.ts +1 -1
  1135. package/lib/routes/huxiu/search.ts +1 -1
  1136. package/lib/routes/huxiu/tag.ts +1 -1
  1137. package/lib/routes/huxiu/util.ts +13 -14
  1138. package/lib/routes/hyperdash/namespace.ts +7 -0
  1139. package/lib/routes/hyperdash/templates/description.art +34 -0
  1140. package/lib/routes/hyperdash/top-traders.ts +84 -0
  1141. package/lib/routes/hyperdash/utils.ts +49 -0
  1142. package/lib/routes/hypergryph/arknights/announce.ts +6 -6
  1143. package/lib/routes/hypergryph/arknights/news.ts +3 -3
  1144. package/lib/routes/i-cable/news.ts +0 -3
  1145. package/lib/routes/ianspriggs/index.ts +2 -4
  1146. package/lib/routes/icac/news.ts +3 -3
  1147. package/lib/routes/icbc/whpj.ts +2 -2
  1148. package/lib/routes/idaily/index.ts +3 -5
  1149. package/lib/routes/idolmaster/news.ts +1 -1
  1150. package/lib/routes/idolypride/news.ts +1 -1
  1151. package/lib/routes/ieee/author.ts +0 -2
  1152. package/lib/routes/ieee/journal.ts +0 -2
  1153. package/lib/routes/iehou/index.ts +3 -3
  1154. package/lib/routes/ielts/index.ts +3 -3
  1155. package/lib/routes/ifanr/category.ts +6 -1
  1156. package/lib/routes/ifeng/feng.ts +2 -2
  1157. package/lib/routes/ifeng/news.ts +0 -2
  1158. package/lib/routes/ifeng/utils.ts +0 -3
  1159. package/lib/routes/iguoguo/index.ts +57 -55
  1160. package/lib/routes/ikea/cn/utils.ts +0 -3
  1161. package/lib/routes/ikea/gb/new.ts +0 -2
  1162. package/lib/routes/ikea/gb/offer.ts +0 -2
  1163. package/lib/routes/iknowwhatyoudownload/daily.ts +1 -4
  1164. package/lib/routes/imdb/chart.ts +4 -6
  1165. package/lib/routes/imhcg/blog.ts +6 -6
  1166. package/lib/routes/imiker/jinghua.ts +0 -2
  1167. package/lib/routes/immich/cursed-knowledge.ts +49 -0
  1168. package/lib/routes/immich/namespace.ts +7 -0
  1169. package/lib/routes/indianexpress/namespace.ts +10 -0
  1170. package/lib/routes/indianexpress/section.ts +124 -0
  1171. package/lib/routes/indienova/column.ts +20 -20
  1172. package/lib/routes/inewsweek/index.ts +3 -3
  1173. package/lib/routes/infoq/presentations.ts +2 -4
  1174. package/lib/routes/infoq/recommend.ts +1 -1
  1175. package/lib/routes/infoq/topic.ts +17 -14
  1176. package/lib/routes/informedainews/docs.ts +1 -1
  1177. package/lib/routes/informs/index.ts +3 -6
  1178. package/lib/routes/infzm/index.ts +3 -3
  1179. package/lib/routes/inoreader/index.ts +18 -20
  1180. package/lib/routes/inoreader/rss.ts +1 -1
  1181. package/lib/routes/instagram/common-utils.ts +3 -6
  1182. package/lib/routes/instagram/private-api/index.ts +1 -1
  1183. package/lib/routes/instagram/web-api/index.ts +17 -13
  1184. package/lib/routes/instagram/web-api/utils.ts +46 -66
  1185. package/lib/routes/instructables/projects.ts +22 -17
  1186. package/lib/routes/investor/index.ts +362 -148
  1187. package/lib/routes/iplaysoft/category.ts +49 -0
  1188. package/lib/routes/iplaysoft/index.ts +48 -41
  1189. package/lib/routes/iplaysoft/namespace.ts +1 -0
  1190. package/lib/routes/iplaysoft/tag.ts +49 -0
  1191. package/lib/routes/iplaysoft/utils.ts +34 -0
  1192. package/lib/routes/ipsw/index.ts +10 -11
  1193. package/lib/routes/ipsw.dev/index.ts +3 -5
  1194. package/lib/routes/iqilu/program.ts +0 -2
  1195. package/lib/routes/iqiyi/album.ts +0 -2
  1196. package/lib/routes/iqiyi/video.ts +7 -11
  1197. package/lib/routes/iresearch/chart.ts +0 -3
  1198. package/lib/routes/iresearch/report.ts +1 -3
  1199. package/lib/routes/iresearch/weekly.ts +1 -3
  1200. package/lib/routes/itch/devlog.ts +7 -5
  1201. package/lib/routes/itch/index.ts +0 -2
  1202. package/lib/routes/ithome/index.ts +5 -5
  1203. package/lib/routes/ithome/ranking.ts +7 -7
  1204. package/lib/routes/ithome/tag.ts +3 -3
  1205. package/lib/routes/ithome/tw/feeds.ts +3 -3
  1206. package/lib/routes/ithome/zt.ts +0 -2
  1207. package/lib/routes/iwara/index.ts +3 -0
  1208. package/lib/routes/iwara/subscriptions.ts +1 -2
  1209. package/lib/routes/ixigua/user-video.ts +0 -2
  1210. package/lib/routes/jamesclear/book-summaries.ts +40 -0
  1211. package/lib/routes/jamesclear/great-speeches.ts +40 -0
  1212. package/lib/routes/jamesclear/namespace.ts +8 -0
  1213. package/lib/routes/jamesclear/quotes.ts +40 -0
  1214. package/lib/routes/jamesclear/three-two-one.ts +41 -0
  1215. package/lib/routes/jamesclear/utils.ts +22 -0
  1216. package/lib/routes/jandan/index.ts +36 -12
  1217. package/lib/routes/jandan/section.ts +102 -44
  1218. package/lib/routes/jandan/utils.ts +248 -0
  1219. package/lib/routes/japanpost/track.ts +46 -53
  1220. package/lib/routes/japanpost/utils.ts +4 -4
  1221. package/lib/routes/javbus/index.ts +5 -4
  1222. package/lib/routes/javdb/actors.ts +3 -2
  1223. package/lib/routes/javdb/index.ts +12 -9
  1224. package/lib/routes/javdb/lists.ts +3 -0
  1225. package/lib/routes/javdb/makers.ts +3 -2
  1226. package/lib/routes/javdb/rankings.ts +7 -6
  1227. package/lib/routes/javdb/search.ts +7 -6
  1228. package/lib/routes/javdb/series.ts +3 -2
  1229. package/lib/routes/javdb/tags.ts +4 -3
  1230. package/lib/routes/javdb/videocodes.ts +3 -2
  1231. package/lib/routes/javlibrary/bestrated.ts +5 -2
  1232. package/lib/routes/javlibrary/bestreviews.ts +3 -2
  1233. package/lib/routes/javlibrary/genre.ts +5 -2
  1234. package/lib/routes/javlibrary/maker.ts +3 -2
  1235. package/lib/routes/javlibrary/mostwanted.ts +5 -2
  1236. package/lib/routes/javlibrary/newentries.ts +3 -0
  1237. package/lib/routes/javlibrary/newrelease.ts +5 -2
  1238. package/lib/routes/javlibrary/star.ts +3 -2
  1239. package/lib/routes/javlibrary/update.ts +3 -0
  1240. package/lib/routes/javlibrary/user.ts +5 -2
  1241. package/lib/routes/javlibrary/utils.ts +1 -4
  1242. package/lib/routes/javtiful/actress.ts +3 -0
  1243. package/lib/routes/javtiful/channel.ts +3 -0
  1244. package/lib/routes/javtiful/utils.ts +0 -3
  1245. package/lib/routes/javtrailers/casts.ts +3 -0
  1246. package/lib/routes/javtrailers/categories.ts +3 -0
  1247. package/lib/routes/javtrailers/studios.ts +3 -0
  1248. package/lib/routes/javtrailers/utils.ts +0 -2
  1249. package/lib/routes/jbma/namespace.ts +17 -0
  1250. package/lib/routes/jbma/report.ts +471 -0
  1251. package/lib/routes/jd/price.ts +0 -2
  1252. package/lib/routes/jetbrains/comments.ts +99 -0
  1253. package/lib/routes/jetbrains/namespace.ts +8 -0
  1254. package/lib/routes/jewishmuseum/exhibitions.ts +2 -2
  1255. package/lib/routes/jianshu/collection.ts +2 -2
  1256. package/lib/routes/jianshu/home.ts +2 -2
  1257. package/lib/routes/jianshu/user.ts +2 -2
  1258. package/lib/routes/jiemian/account.ts +16 -0
  1259. package/lib/routes/jiemian/common.ts +101 -0
  1260. package/lib/routes/jiemian/lists.ts +93 -106
  1261. package/lib/routes/jiemian/special.ts +12 -0
  1262. package/lib/routes/jiemian/video.ts +19 -0
  1263. package/lib/routes/jiemian/vip.ts +20 -0
  1264. package/lib/routes/jike/topic.ts +1 -1
  1265. package/lib/routes/jike/user.ts +1 -1
  1266. package/lib/routes/jike/utils.ts +0 -1
  1267. package/lib/routes/jimmyspa/books.ts +1 -3
  1268. package/lib/routes/jimmyspa/news.ts +1 -3
  1269. package/lib/routes/jin10/category.ts +221 -0
  1270. package/lib/routes/jin10/index.ts +1 -3
  1271. package/lib/routes/jin10/topic.ts +1 -1
  1272. package/lib/routes/jingzhengu/utils.ts +4 -4
  1273. package/lib/routes/jinritemai/docs.ts +6 -6
  1274. package/lib/routes/jinse/catalogue.ts +5 -7
  1275. package/lib/routes/jinse/lives.ts +3 -5
  1276. package/lib/routes/jinse/timeline.ts +4 -6
  1277. package/lib/routes/jisilu/util.ts +2 -1
  1278. package/lib/routes/jiuyangongshe/community.ts +2 -5
  1279. package/lib/routes/jjwxc/author.ts +0 -2
  1280. package/lib/routes/jjwxc/book.ts +1 -3
  1281. package/lib/routes/joins/chinese.ts +15 -17
  1282. package/lib/routes/joneslanglasalle/index.ts +2 -4
  1283. package/lib/routes/jornada/index.ts +13 -13
  1284. package/lib/routes/joshwcomeau/latest.ts +59 -0
  1285. package/lib/routes/joshwcomeau/namespace.ts +8 -0
  1286. package/lib/routes/joshwcomeau/popular.ts +38 -0
  1287. package/lib/routes/joshwcomeau/utils.ts +61 -0
  1288. package/lib/routes/jou/utils/index.ts +2 -2
  1289. package/lib/routes/jpmorganchase/namespace.ts +9 -0
  1290. package/lib/routes/jpmorganchase/research.ts +107 -0
  1291. package/lib/routes/jpxgmn/search.ts +5 -2
  1292. package/lib/routes/jpxgmn/tab.ts +6 -3
  1293. package/lib/routes/jpxgmn/utils.ts +11 -6
  1294. package/lib/routes/jpxgmn/weekly.ts +6 -3
  1295. package/lib/routes/jsu/jwc.ts +2 -2
  1296. package/lib/routes/juejin/aicoding.ts +102 -0
  1297. package/lib/routes/juejin/collections.ts +1 -1
  1298. package/lib/routes/juejin/dynamic.ts +11 -1
  1299. package/lib/routes/juejin/pins.ts +6 -8
  1300. package/lib/routes/juejin/trending.ts +70 -20
  1301. package/lib/routes/juejin/utils.ts +36 -51
  1302. package/lib/routes/jumeili/home.ts +98 -0
  1303. package/lib/routes/jumeili/namespace.ts +7 -0
  1304. package/lib/routes/jump/discount.ts +14 -16
  1305. package/lib/routes/kadokawa/blog.ts +0 -2
  1306. package/lib/routes/kakuyomu/works.ts +4 -1
  1307. package/lib/routes/kamen-rider-official/news.ts +31 -33
  1308. package/lib/routes/kantarworldpanel/index.ts +0 -2
  1309. package/lib/routes/kanxue/topic.ts +26 -26
  1310. package/lib/routes/kaopu/news.ts +3 -3
  1311. package/lib/routes/kbs/news.ts +5 -5
  1312. package/lib/routes/kbs/today.ts +5 -5
  1313. package/lib/routes/kcna/news.ts +48 -50
  1314. package/lib/routes/keep/templates/user.art +10 -8
  1315. package/lib/routes/keep/user.ts +31 -39
  1316. package/lib/routes/kemono/const.ts +9 -0
  1317. package/lib/routes/kemono/index.ts +294 -145
  1318. package/lib/routes/kemono/namespace.ts +1 -1
  1319. package/lib/routes/kemono/templates/discord.art +1 -1
  1320. package/lib/routes/kemono/types.ts +31 -0
  1321. package/lib/routes/kepu/live.ts +0 -2
  1322. package/lib/routes/kiro/blog.ts +131 -0
  1323. package/lib/routes/kiro/changelog.ts +128 -0
  1324. package/lib/routes/kiro/namespace.ts +9 -0
  1325. package/lib/routes/kisskiss/blog.ts +1 -0
  1326. package/lib/routes/komiic/comic.ts +89 -0
  1327. package/lib/routes/komiic/namespace.ts +7 -0
  1328. package/lib/routes/konachan/post.ts +32 -21
  1329. package/lib/routes/kovidgoyal/kitty/changelog.ts +83 -0
  1330. package/lib/routes/kovidgoyal/namespace.ts +7 -0
  1331. package/lib/routes/koyso/index.ts +339 -0
  1332. package/lib/routes/koyso/namespace.ts +9 -0
  1333. package/lib/routes/koyso/templates/description.art +13 -0
  1334. package/lib/routes/kpmg/insights.ts +0 -2
  1335. package/lib/routes/kpopping/kpics.ts +214 -0
  1336. package/lib/routes/kpopping/namespace.ts +9 -0
  1337. package/lib/routes/kpopping/news.ts +195 -0
  1338. package/lib/routes/kpopping/templates/description.art +17 -0
  1339. package/lib/routes/kuaidi100/utils.ts +1 -1
  1340. package/lib/routes/kunchengblog/essay.ts +1 -1
  1341. package/lib/routes/kurogames/namespace.ts +1 -1
  1342. package/lib/routes/kurogames/wutheringwaves/constants.ts +34 -0
  1343. package/lib/routes/kurogames/wutheringwaves/news.ts +63 -33
  1344. package/lib/routes/kurogames/wutheringwaves/utils.ts +79 -0
  1345. package/lib/routes/kyodonews/index.ts +8 -10
  1346. package/lib/routes/laimanhua/index.ts +1 -0
  1347. package/lib/routes/lala/rss.ts +3 -3
  1348. package/lib/routes/landiannews/category.ts +48 -0
  1349. package/lib/routes/landiannews/index.ts +44 -0
  1350. package/lib/routes/landiannews/namespace.ts +9 -0
  1351. package/lib/routes/landiannews/tag.ts +48 -0
  1352. package/lib/routes/landiannews/utils.ts +34 -0
  1353. package/lib/routes/lang/room.ts +0 -2
  1354. package/lib/routes/lanqiao/utils.ts +0 -3
  1355. package/lib/routes/laohu8/personal.ts +1 -1
  1356. package/lib/routes/latepost/index.ts +3 -3
  1357. package/lib/routes/leagueoflegends/namespace.ts +8 -0
  1358. package/lib/routes/leagueoflegends/patch-notes.ts +76 -0
  1359. package/lib/routes/learnblockchain/posts.ts +28 -32
  1360. package/lib/routes/learnku/topic.ts +1 -3
  1361. package/lib/routes/leetcode/articles.ts +8 -8
  1362. package/lib/routes/leetcode/dailyquestion-cn.ts +0 -2
  1363. package/lib/routes/leetcode/dailyquestion-en.ts +0 -2
  1364. package/lib/routes/leiphone/index.ts +1 -1
  1365. package/lib/routes/lemmy/index.ts +1 -1
  1366. package/lib/routes/lenovo/drive.ts +65 -0
  1367. package/lib/routes/lenovo/namespace.ts +7 -0
  1368. package/lib/routes/lenovo/templates/drive.art +9 -0
  1369. package/lib/routes/lens/namespace.ts +7 -0
  1370. package/lib/routes/lens/profile.ts +80 -0
  1371. package/lib/routes/letterboxd/index.ts +65 -0
  1372. package/lib/routes/letterboxd/namespace.ts +8 -0
  1373. package/lib/routes/lfsyd/utils.ts +0 -3
  1374. package/lib/routes/lhratings/research.ts +3 -2
  1375. package/lib/routes/likeshop/index.ts +43 -0
  1376. package/lib/routes/likeshop/namespace.ts +7 -0
  1377. package/lib/routes/line/publisher.ts +1 -1
  1378. package/lib/routes/line/today.ts +4 -4
  1379. package/lib/routes/line/utils.ts +1 -1
  1380. package/lib/routes/lineageos/changes.ts +79 -0
  1381. package/lib/routes/lineageos/namespace.ts +9 -0
  1382. package/lib/routes/linkedin/cn/index.ts +7 -7
  1383. package/lib/routes/linkedin/cn/renderer.ts +2 -2
  1384. package/lib/routes/linkedin/cn/utils.ts +1 -4
  1385. package/lib/routes/linkedin/jobs.ts +15 -15
  1386. package/lib/routes/linkedin/posts.ts +65 -0
  1387. package/lib/routes/linkedin/utils.ts +75 -1
  1388. package/lib/routes/linkresearcher/index.ts +1 -3
  1389. package/lib/routes/linovelib/novel.ts +4 -4
  1390. package/lib/routes/liquipedia/cs-matches.ts +51 -25
  1391. package/lib/routes/literotica/category.ts +6 -3
  1392. package/lib/routes/literotica/new.ts +4 -3
  1393. package/lib/routes/liveuamap/index.ts +1 -1
  1394. package/lib/routes/lkong/forum.ts +0 -2
  1395. package/lib/routes/lkong/thread.ts +0 -2
  1396. package/lib/routes/lmu/jobs.ts +0 -2
  1397. package/lib/routes/lofter/collection.ts +1 -1
  1398. package/lib/routes/lofter/tag.ts +30 -6
  1399. package/lib/routes/lofter/user.ts +1 -1
  1400. package/lib/routes/logclub/index.ts +0 -2
  1401. package/lib/routes/logclub/report.ts +2 -4
  1402. package/lib/routes/logonews/index.ts +0 -2
  1403. package/lib/routes/logrocket/index.ts +1 -8
  1404. package/lib/routes/loltw/news.ts +2 -4
  1405. package/lib/routes/loongarch/post.ts +1 -0
  1406. package/lib/routes/lorientlejour/index.ts +1 -3
  1407. package/lib/routes/lovelive-anime/news.ts +7 -9
  1408. package/lib/routes/lrepacks/index.ts +11 -13
  1409. package/lib/routes/lsnu/jiaowc/tzgg.ts +3 -3
  1410. package/lib/routes/ltaaa/article.ts +178 -0
  1411. package/lib/routes/ltaaa/namespace.ts +9 -0
  1412. package/lib/routes/ltaaa/templates/description.art +7 -0
  1413. package/lib/routes/luogu/contest.ts +25 -25
  1414. package/lib/routes/luolei/index.ts +0 -2
  1415. package/lib/routes/lvv2/news.ts +8 -10
  1416. package/lib/routes/lvv2/top.ts +8 -10
  1417. package/lib/routes/lxixsxa/discography.ts +0 -2
  1418. package/lib/routes/lxixsxa/information.ts +0 -2
  1419. package/lib/routes/m4/index.ts +0 -2
  1420. package/lib/routes/maccms/index.ts +2 -3
  1421. package/lib/routes/macfilos/blog.ts +1 -1
  1422. package/lib/routes/magazinelib/latest-magazine.ts +0 -2
  1423. package/lib/routes/magnumphotos/magazine.ts +1 -1
  1424. package/lib/routes/makerworld/contest.ts +51 -0
  1425. package/lib/routes/makerworld/namespace.ts +7 -0
  1426. package/lib/routes/makerworld/trending.ts +45 -0
  1427. package/lib/routes/makerworld/user-upload.ts +54 -0
  1428. package/lib/routes/makerworld/utils.ts +18 -0
  1429. package/lib/routes/malaysiakini/index.ts +8 -8
  1430. package/lib/routes/mangadex/_access.ts +111 -0
  1431. package/lib/routes/mangadex/_constants.ts +75 -0
  1432. package/lib/routes/mangadex/_feed.ts +184 -0
  1433. package/lib/routes/mangadex/_profile.ts +47 -0
  1434. package/lib/routes/mangadex/_utils.ts +49 -0
  1435. package/lib/routes/mangadex/index.ts +19 -67
  1436. package/lib/routes/mangadex/mdlist/feed.ts +157 -0
  1437. package/lib/routes/mangadex/namespace.ts +2 -0
  1438. package/lib/routes/mangadex/user/feed.ts +127 -0
  1439. package/lib/routes/mangadex/user/follows.ts +150 -0
  1440. package/lib/routes/manhuagui/comic.ts +31 -31
  1441. package/lib/routes/manhuagui/subscribe.ts +9 -10
  1442. package/lib/routes/manus/blog.ts +77 -0
  1443. package/lib/routes/manus/namespace.ts +7 -0
  1444. package/lib/routes/manyvids/video.ts +4 -4
  1445. package/lib/routes/mashiro/index.ts +62 -0
  1446. package/lib/routes/mashiro/namespace.ts +11 -0
  1447. package/lib/routes/mastodon/account-id.ts +1 -1
  1448. package/lib/routes/mastodon/acct.ts +1 -1
  1449. package/lib/routes/mastodon/tag.ts +48 -0
  1450. package/lib/routes/mastodon/timeline-local.ts +2 -2
  1451. package/lib/routes/mastodon/timeline-remote.ts +2 -2
  1452. package/lib/routes/mathpix/blog.ts +155 -0
  1453. package/lib/routes/mathpix/namespace.ts +9 -0
  1454. package/lib/routes/mathpix/templates/description.art +21 -0
  1455. package/lib/routes/matters/latest.ts +2 -2
  1456. package/lib/routes/matters/namespace.ts +1 -1
  1457. package/lib/routes/mckinsey/cn/category-map.ts +9 -15
  1458. package/lib/routes/mckinsey/cn/index.ts +78 -41
  1459. package/lib/routes/mcmod/index.ts +2 -3
  1460. package/lib/routes/mdpi/journal.ts +3 -5
  1461. package/lib/routes/medsci/index.ts +28 -28
  1462. package/lib/routes/meishichina/index.ts +189 -189
  1463. package/lib/routes/meituan/tech.ts +31 -37
  1464. package/lib/routes/melonbooks/namespace.ts +9 -0
  1465. package/lib/routes/melonbooks/parser.ts +39 -0
  1466. package/lib/routes/melonbooks/search.ts +45 -0
  1467. package/lib/routes/mercari/keyword.ts +68 -0
  1468. package/lib/routes/mercari/namespace.ts +9 -0
  1469. package/lib/routes/mercari/search.ts +90 -0
  1470. package/lib/routes/mercari/templates/item.art +46 -0
  1471. package/lib/routes/mercari/templates/shopItem.art +46 -0
  1472. package/lib/routes/mercari/types.ts +278 -0
  1473. package/lib/routes/mercari/util.ts +322 -0
  1474. package/lib/routes/meta/ai-blog.ts +121 -0
  1475. package/lib/routes/meta/namespace.ts +6 -0
  1476. package/lib/routes/metacritic/index.ts +2 -4
  1477. package/lib/routes/metacritic/release.ts +1 -1
  1478. package/lib/routes/meteoblue/namespace.ts +8 -0
  1479. package/lib/routes/meteoblue/weathernews.ts +75 -0
  1480. package/lib/routes/meteor/utils.ts +0 -3
  1481. package/lib/routes/mi/utils.ts +4 -7
  1482. package/lib/routes/microsoft/addon.ts +7 -9
  1483. package/lib/routes/mihoyo/bbs/follow-list.ts +0 -2
  1484. package/lib/routes/mihoyo/bbs/img-ranking.ts +20 -20
  1485. package/lib/routes/mihoyo/bbs/official.ts +6 -8
  1486. package/lib/routes/mihoyo/bbs/utils.ts +0 -3
  1487. package/lib/routes/mihoyo/sr/news.ts +5 -4
  1488. package/lib/routes/mihoyo/ys/news.ts +22 -78
  1489. package/lib/routes/mihoyo/zzz/news.ts +107 -0
  1490. package/lib/routes/mindmeister/example.ts +27 -29
  1491. package/lib/routes/minecraft/version.ts +6 -6
  1492. package/lib/routes/mingpao/index.ts +2 -4
  1493. package/lib/routes/miniflux/entry.ts +5 -5
  1494. package/lib/routes/miniflux/subscription.ts +2 -2
  1495. package/lib/routes/mirror/index.ts +1 -1
  1496. package/lib/routes/missav/new.ts +28 -11
  1497. package/lib/routes/misskey/featured-notes.ts +1 -1
  1498. package/lib/routes/misskey/home-timeline.ts +99 -0
  1499. package/lib/routes/misskey/user-timeline.ts +13 -11
  1500. package/lib/routes/misskey/utils.ts +6 -9
  1501. package/lib/routes/misskon/posts.ts +1 -0
  1502. package/lib/routes/misskon/tag.ts +1 -0
  1503. package/lib/routes/misskon/top.ts +1 -0
  1504. package/lib/routes/mit/hanlab.ts +61 -0
  1505. package/lib/routes/mit/namespace.ts +6 -0
  1506. package/lib/routes/mittrchina/index.ts +3 -5
  1507. package/lib/routes/miui/firmware/index.ts +6 -6
  1508. package/lib/routes/mixcloud/config.ts +129 -0
  1509. package/lib/routes/mixcloud/index.ts +165 -109
  1510. package/lib/routes/mixcloud/user-playlist.ts +31 -0
  1511. package/lib/routes/mixi2/community.ts +72 -0
  1512. package/lib/routes/mixi2/discovery.ts +52 -0
  1513. package/lib/routes/mixi2/home.ts +51 -0
  1514. package/lib/routes/mixi2/namespace.ts +8 -0
  1515. package/lib/routes/mixi2/user.ts +77 -0
  1516. package/lib/routes/mixi2/utils.ts +56 -0
  1517. package/lib/routes/modelscope/community.ts +0 -2
  1518. package/lib/routes/modelscope/datasets.ts +0 -2
  1519. package/lib/routes/modelscope/learn.ts +94 -0
  1520. package/lib/routes/modelscope/studios.ts +0 -2
  1521. package/lib/routes/modian/zhongchou.ts +21 -21
  1522. package/lib/routes/modrinth/versions.ts +0 -3
  1523. package/lib/routes/moodysmismicrosite/report.ts +1 -1
  1524. package/lib/routes/mpaypass/main.ts +7 -7
  1525. package/lib/routes/mpaypass/news.ts +2 -2
  1526. package/lib/routes/mrdx/daily.ts +1 -1
  1527. package/lib/routes/mrm/index.ts +2 -2
  1528. package/lib/routes/msn/index.ts +2 -2
  1529. package/lib/routes/musify/index.ts +129 -0
  1530. package/lib/routes/musify/namespace.ts +9 -0
  1531. package/lib/routes/musikguru/namespace.ts +9 -0
  1532. package/lib/routes/musikguru/news.ts +146 -0
  1533. package/lib/routes/musikguru/templates/description.art +21 -0
  1534. package/lib/routes/mwm/index.ts +2 -2
  1535. package/lib/routes/mycard520/namespace.ts +9 -0
  1536. package/lib/routes/mycard520/news.ts +244 -0
  1537. package/lib/routes/mydrivers/cid.ts +192 -6
  1538. package/lib/routes/mydrivers/index.ts +41 -13
  1539. package/lib/routes/mydrivers/rank.ts +4 -5
  1540. package/lib/routes/mydrivers/util.ts +10 -13
  1541. package/lib/routes/myfans/post.ts +2 -4
  1542. package/lib/routes/myfigurecollection/activity.ts +19 -21
  1543. package/lib/routes/myfigurecollection/index.ts +2 -4
  1544. package/lib/routes/mygopen/index.ts +2 -2
  1545. package/lib/routes/mymusicsheet/usersheets.ts +1 -3
  1546. package/lib/routes/mysql/release.ts +1 -1
  1547. package/lib/routes/nankai/ai-notice.ts +142 -0
  1548. package/lib/routes/nankai/cc-notice.ts +114 -0
  1549. package/lib/routes/nankai/graduate-notice.ts +162 -0
  1550. package/lib/routes/nankai/jwc.ts +131 -0
  1551. package/lib/routes/nankai/namespace.ts +7 -0
  1552. package/lib/routes/nankai/notice.ts +84 -0
  1553. package/lib/routes/nankai/yzb.ts +97 -0
  1554. package/lib/routes/nasa/apod-ncku.ts +3 -3
  1555. package/lib/routes/nasa/apod.ts +4 -4
  1556. package/lib/routes/natgeo/dailyphoto.ts +0 -2
  1557. package/lib/routes/natgeo/natgeo.ts +3 -2
  1558. package/lib/routes/nationalgeographic/latest-stories.ts +0 -2
  1559. package/lib/routes/naturalism/namespace.ts +7 -0
  1560. package/lib/routes/naturalism/new.ts +59 -0
  1561. package/lib/routes/nature/research.ts +10 -10
  1562. package/lib/routes/nautil/topics.ts +1 -3
  1563. package/lib/routes/nautiljon/manga-releases.ts +72 -0
  1564. package/lib/routes/nautiljon/namespace.ts +7 -0
  1565. package/lib/routes/nbd/index.ts +2 -2
  1566. package/lib/routes/nber/common.ts +0 -3
  1567. package/lib/routes/ncc-cma/cmdp.ts +27 -29
  1568. package/lib/routes/ncepu/master/masterinfo.ts +5 -5
  1569. package/lib/routes/neea/index.ts +1 -1
  1570. package/lib/routes/neea/jlpt.ts +92 -53
  1571. package/lib/routes/neea/namespace.ts +1 -1
  1572. package/lib/routes/netflav/index.ts +3 -2
  1573. package/lib/routes/neu/bmie.ts +17 -17
  1574. package/lib/routes/neu/news.ts +16 -16
  1575. package/lib/routes/neu/yz.ts +172 -0
  1576. package/lib/routes/newrank/utils.ts +11 -1
  1577. package/lib/routes/news/xhsxw.ts +0 -2
  1578. package/lib/routes/newslaundry/explainer.ts +30 -0
  1579. package/lib/routes/newslaundry/namespace.ts +8 -0
  1580. package/lib/routes/newslaundry/nl-cheatsheet.ts +30 -0
  1581. package/lib/routes/newslaundry/nl-collaborations.ts +30 -0
  1582. package/lib/routes/newslaundry/podcast.ts +61 -0
  1583. package/lib/routes/newslaundry/reports.ts +30 -0
  1584. package/lib/routes/newslaundry/shot.ts +30 -0
  1585. package/lib/routes/newslaundry/subscriber-only.ts +30 -0
  1586. package/lib/routes/newslaundry/templates/description.art +28 -0
  1587. package/lib/routes/newslaundry/utils.ts +108 -0
  1588. package/lib/routes/newsmarket/index.ts +8 -8
  1589. package/lib/routes/newswav/latest.ts +100 -0
  1590. package/lib/routes/newswav/namespace.ts +7 -0
  1591. package/lib/routes/newyorker/news.ts +1 -1
  1592. package/lib/routes/newzmz/index.ts +1 -1
  1593. package/lib/routes/newzmz/util.ts +0 -3
  1594. package/lib/routes/nextapple/realtime.ts +33 -32
  1595. package/lib/routes/nga/forum.ts +1 -1
  1596. package/lib/routes/nga/post.ts +3 -2
  1597. package/lib/routes/ngocn2/index.ts +5 -5
  1598. package/lib/routes/nhentai/index.ts +1 -0
  1599. package/lib/routes/nhentai/search.ts +1 -0
  1600. package/lib/routes/nhentai/util.ts +7 -5
  1601. package/lib/routes/nhk/news-web-easy.ts +16 -23
  1602. package/lib/routes/nhk/news.ts +6 -8
  1603. package/lib/routes/nicovideo/mylist.ts +39 -0
  1604. package/lib/routes/nicovideo/types.ts +27 -0
  1605. package/lib/routes/nicovideo/utils.ts +28 -5
  1606. package/lib/routes/nifd/research.ts +19 -3
  1607. package/lib/routes/nikkei/asia/index.ts +27 -27
  1608. package/lib/routes/nikkei/cn/index.ts +9 -5
  1609. package/lib/routes/nikkei/news.ts +2 -4
  1610. package/lib/routes/nintendo/direct.ts +0 -2
  1611. package/lib/routes/nintendo/eshop-hk.ts +0 -2
  1612. package/lib/routes/nintendo/eshop-jp.ts +0 -2
  1613. package/lib/routes/nintendo/eshop-us.ts +0 -2
  1614. package/lib/routes/nintendo/system-update.ts +2 -4
  1615. package/lib/routes/nintendo/utils.ts +2 -5
  1616. package/lib/routes/nio/namespace.ts +9 -0
  1617. package/lib/routes/nio/nioradio.ts +75 -0
  1618. package/lib/routes/nippon/index.ts +2 -2
  1619. package/lib/routes/njit/jwc.ts +5 -6
  1620. package/lib/routes/njit/tzgg.ts +6 -6
  1621. package/lib/routes/njnu/ceai/ceai.ts +3 -3
  1622. package/lib/routes/njnu/jwc/jwc.ts +5 -5
  1623. package/lib/routes/nju/exchangesys.ts +2 -2
  1624. package/lib/routes/nju/gra.ts +2 -2
  1625. package/lib/routes/nju/jw.ts +2 -2
  1626. package/lib/routes/nju/rczp.ts +2 -2
  1627. package/lib/routes/nju/scit.ts +10 -12
  1628. package/lib/routes/nju/zbb.ts +21 -25
  1629. package/lib/routes/njupt/jwc.ts +8 -8
  1630. package/lib/routes/njust/cs.ts +58 -0
  1631. package/lib/routes/njust/cwc.ts +7 -11
  1632. package/lib/routes/njust/dgxg.ts +7 -11
  1633. package/lib/routes/njust/eo.ts +11 -15
  1634. package/lib/routes/njust/eoe.ts +7 -11
  1635. package/lib/routes/njust/gs.ts +2 -2
  1636. package/lib/routes/njust/jwc.ts +7 -11
  1637. package/lib/routes/njust/utils.ts +2 -2
  1638. package/lib/routes/njxzc/utils/index.ts +2 -2
  1639. package/lib/routes/nlc/read.ts +3 -3
  1640. package/lib/routes/nltimes/news.ts +7 -7
  1641. package/lib/routes/nmtv/column.ts +0 -2
  1642. package/lib/routes/nodejs/blog.ts +12 -12
  1643. package/lib/routes/nogizaka46/blog.ts +42 -42
  1644. package/lib/routes/nosec/index.ts +8 -8
  1645. package/lib/routes/notateslaapp/update.ts +9 -13
  1646. package/lib/routes/notefolio/search.ts +15 -17
  1647. package/lib/routes/notion/namespace.ts +2 -2
  1648. package/lib/routes/now/news.ts +102 -42
  1649. package/lib/routes/nowcoder/discuss.ts +7 -7
  1650. package/lib/routes/nowcoder/jobcenter.ts +9 -9
  1651. package/lib/routes/npm/package.ts +0 -2
  1652. package/lib/routes/ntdm/video.ts +5 -5
  1653. package/lib/routes/ntdtv/channel.ts +2 -2
  1654. package/lib/routes/nua/dc.ts +7 -7
  1655. package/lib/routes/nua/gra.ts +4 -4
  1656. package/lib/routes/nua/index.ts +3 -3
  1657. package/lib/routes/nua/lib.ts +5 -5
  1658. package/lib/routes/nua/sxw.ts +6 -6
  1659. package/lib/routes/nuaa/college/cae.ts +6 -6
  1660. package/lib/routes/nuaa/college/cs.ts +8 -8
  1661. package/lib/routes/nuaa/jwc/jwc.ts +8 -8
  1662. package/lib/routes/nuaa/utils/pypasswaf.ts +1 -1
  1663. package/lib/routes/nuaa/yjsy/yjsy.ts +8 -8
  1664. package/lib/routes/nudt/yjszs.ts +2 -2
  1665. package/lib/routes/nuist/bulletin.ts +25 -27
  1666. package/lib/routes/nuist/cas.ts +2 -2
  1667. package/lib/routes/nuist/jwc.ts +2 -2
  1668. package/lib/routes/nuist/scs.ts +2 -2
  1669. package/lib/routes/nuist/sese.ts +2 -2
  1670. package/lib/routes/nwafu/all.ts +6 -6
  1671. package/lib/routes/nwnu/namespace.ts +7 -0
  1672. package/lib/routes/nwnu/routes/college/csse.ts +133 -0
  1673. package/lib/routes/nwnu/routes/department/academic-affairs.ts +115 -0
  1674. package/lib/routes/nwnu/routes/department/postgraduate.ts +139 -0
  1675. package/lib/routes/nwnu/routes/lib/embed-resource.ts +14 -0
  1676. package/lib/routes/nycu/aa.ts +72 -0
  1677. package/lib/routes/nycu/announcement.ts +61 -0
  1678. package/lib/routes/nycu/cs.ts +54 -0
  1679. package/lib/routes/nycu/namespace.ts +10 -0
  1680. package/lib/routes/nycu/osa.ts +107 -0
  1681. package/lib/routes/nytimes/book.ts +4 -4
  1682. package/lib/routes/nytimes/daily-briefing-chinese.ts +1 -3
  1683. package/lib/routes/nytimes/index.ts +3 -3
  1684. package/lib/routes/nytimes/rss.ts +6 -2
  1685. package/lib/routes/oceanengine/arithmetic-index.ts +2 -4
  1686. package/lib/routes/odaily/activity.ts +1 -1
  1687. package/lib/routes/odaily/newsflash.ts +1 -1
  1688. package/lib/routes/odaily/post.ts +3 -3
  1689. package/lib/routes/odaily/search-news.ts +1 -1
  1690. package/lib/routes/odaily/user.ts +1 -1
  1691. package/lib/routes/oeeee/app/channel.ts +0 -2
  1692. package/lib/routes/oeeee/app/reporter.ts +0 -2
  1693. package/lib/routes/oeeee/web.ts +0 -2
  1694. package/lib/routes/oilchem/index.ts +3 -3
  1695. package/lib/routes/okx/index.ts +125 -0
  1696. package/lib/routes/okx/namespace.ts +7 -0
  1697. package/lib/routes/olevod/vod.ts +3 -0
  1698. package/lib/routes/olevod/vodlist.ts +3 -0
  1699. package/lib/routes/oncc/index.ts +3 -5
  1700. package/lib/routes/oncc/money18.ts +2 -4
  1701. package/lib/routes/onet/news.ts +0 -2
  1702. package/lib/routes/onet/utils.ts +0 -3
  1703. package/lib/routes/oo-software/changelog.ts +5 -5
  1704. package/lib/routes/openai/chatgpt.ts +2 -2
  1705. package/lib/routes/openai/common.ts +69 -3
  1706. package/lib/routes/openai/cookbook.ts +1 -1
  1707. package/lib/routes/openai/news.ts +32 -0
  1708. package/lib/routes/openrice/chart.ts +6 -8
  1709. package/lib/routes/openrice/offers.ts +3 -5
  1710. package/lib/routes/openrice/promos.ts +3 -5
  1711. package/lib/routes/openrice/voting.ts +6 -6
  1712. package/lib/routes/orcid/index.ts +0 -2
  1713. package/lib/routes/oreno3d/main.ts +43 -46
  1714. package/lib/routes/oschina/column.ts +4 -7
  1715. package/lib/routes/oschina/event.ts +3 -5
  1716. package/lib/routes/oschina/news.ts +2 -2
  1717. package/lib/routes/oshwhub/explore.ts +0 -2
  1718. package/lib/routes/osu/beatmaps/latest-ranked.ts +4 -7
  1719. package/lib/routes/otobanana/utils.ts +0 -3
  1720. package/lib/routes/ouc/it-tx.ts +2 -2
  1721. package/lib/routes/ouc/it.ts +2 -2
  1722. package/lib/routes/oup/index.ts +0 -2
  1723. package/lib/routes/p-articles/contributors.ts +5 -5
  1724. package/lib/routes/p-articles/section.ts +5 -5
  1725. package/lib/routes/panewslab/author.ts +1 -1
  1726. package/lib/routes/panewslab/news.ts +1 -1
  1727. package/lib/routes/panewslab/profundity.ts +2 -2
  1728. package/lib/routes/panewslab/topic.ts +1 -1
  1729. package/lib/routes/papers/category.ts +1219 -0
  1730. package/lib/routes/papers/query.ts +4 -6
  1731. package/lib/routes/papers/templates/description.art +9 -6
  1732. package/lib/routes/parliament/section77.ts +3 -3
  1733. package/lib/routes/parliament.uk/commonslibrary.ts +1 -1
  1734. package/lib/routes/parliament.uk/lordslibrary.ts +1 -1
  1735. package/lib/routes/parliament.uk/petitions.ts +1 -4
  1736. package/lib/routes/patagonia/new-arrivals.ts +11 -18
  1737. package/lib/routes/patreon/feed.ts +3 -5
  1738. package/lib/routes/patreon/templates/description.art +2 -0
  1739. package/lib/routes/patreon/types.ts +8 -12
  1740. package/lib/routes/paulgraham/article.ts +2 -2
  1741. package/lib/routes/pconline/focus.ts +1 -1
  1742. package/lib/routes/penguin-random-house/articles.ts +5 -7
  1743. package/lib/routes/penguin-random-house/thereaddown.ts +5 -7
  1744. package/lib/routes/penguin-random-house/utils.ts +1 -4
  1745. package/lib/routes/people/index.ts +15 -15
  1746. package/lib/routes/people/liuyan.ts +2 -2
  1747. package/lib/routes/people/xjpjh.ts +5 -5
  1748. package/lib/routes/peopo/topic.ts +18 -18
  1749. package/lib/routes/phoronix/index.ts +3 -3
  1750. package/lib/routes/pianyuan/app.ts +1 -1
  1751. package/lib/routes/pianyuan/search.ts +2 -2
  1752. package/lib/routes/picnob/user.ts +76 -113
  1753. package/lib/routes/picnob/utils.ts +14 -12
  1754. package/lib/routes/picuki/namespace.ts +1 -7
  1755. package/lib/routes/picuki/profile.ts +122 -172
  1756. package/lib/routes/pikabu/utils.ts +0 -3
  1757. package/lib/routes/pincong/hot.ts +6 -8
  1758. package/lib/routes/pincong/index.ts +5 -7
  1759. package/lib/routes/pincong/topic.ts +5 -7
  1760. package/lib/routes/pincong/utils.ts +1 -1
  1761. package/lib/routes/pingwest/status.ts +1 -1
  1762. package/lib/routes/pingwest/tag.ts +4 -4
  1763. package/lib/routes/pingwest/user.ts +4 -4
  1764. package/lib/routes/pinterest/user.ts +9 -0
  1765. package/lib/routes/pixabay/search.ts +1 -3
  1766. package/lib/routes/pixelstech/index.ts +349 -0
  1767. package/lib/routes/pixelstech/namespace.ts +9 -0
  1768. package/lib/routes/pixelstech/templates/description.art +21 -0
  1769. package/lib/routes/pixiv/api/get-ranking.ts +2 -2
  1770. package/lib/routes/pixiv/bookmarks.ts +2 -1
  1771. package/lib/routes/pixiv/illustfollow.ts +1 -0
  1772. package/lib/routes/pixiv/novel-api/content/utils.ts +1 -0
  1773. package/lib/routes/pixiv/novel-api/series/sfw.ts +1 -1
  1774. package/lib/routes/pixiv/novel-api/user-novels/sfw.ts +1 -1
  1775. package/lib/routes/pixiv/novel-series.ts +17 -3
  1776. package/lib/routes/pixiv/novels.ts +3 -2
  1777. package/lib/routes/pixiv/pixiv-got.ts +1 -1
  1778. package/lib/routes/pixiv/ranking.ts +2 -1
  1779. package/lib/routes/pixiv/search.ts +2 -1
  1780. package/lib/routes/pixiv/user.ts +3 -2
  1781. package/lib/routes/pixivision/index.ts +1 -1
  1782. package/lib/routes/pixivision/utils.ts +1 -1
  1783. package/lib/routes/piyao/jrpy.ts +3 -3
  1784. package/lib/routes/pku/bbs/hot.ts +5 -7
  1785. package/lib/routes/pku/cls/lecture.ts +3 -3
  1786. package/lib/routes/pku/hr.ts +4 -4
  1787. package/lib/routes/pku/nsd.ts +3 -3
  1788. package/lib/routes/pku/pkuyjs.ts +9 -13
  1789. package/lib/routes/pku/rccp/mzyt.ts +3 -3
  1790. package/lib/routes/pku/scc/recruit.ts +6 -6
  1791. package/lib/routes/playno1/av.ts +4 -3
  1792. package/lib/routes/playno1/st.ts +2 -2
  1793. package/lib/routes/playpcesor/rss.ts +3 -3
  1794. package/lib/routes/plurk/anonymous.ts +1 -1
  1795. package/lib/routes/plurk/hotlinks.ts +1 -1
  1796. package/lib/routes/plurk/news.ts +1 -1
  1797. package/lib/routes/plurk/search.ts +1 -1
  1798. package/lib/routes/plurk/top.ts +6 -6
  1799. package/lib/routes/plurk/topic.ts +1 -1
  1800. package/lib/routes/plurk/user.ts +1 -1
  1801. package/lib/routes/pnas/index.ts +2 -4
  1802. package/lib/routes/podwise/collections.ts +1 -1
  1803. package/lib/routes/podwise/episodes.ts +1 -1
  1804. package/lib/routes/pornhub/category-url.ts +1 -0
  1805. package/lib/routes/pornhub/category.ts +4 -3
  1806. package/lib/routes/pornhub/model.ts +4 -8
  1807. package/lib/routes/pornhub/pornstar.ts +4 -8
  1808. package/lib/routes/pornhub/search.ts +2 -1
  1809. package/lib/routes/pornhub/users.ts +3 -7
  1810. package/lib/routes/pornhub/utils.ts +12 -4
  1811. package/lib/routes/priconne-redive/news.ts +4 -4
  1812. package/lib/routes/producthunt/templates/description.art +19 -0
  1813. package/lib/routes/producthunt/today.ts +59 -25
  1814. package/lib/routes/ps/monthly-games.ts +1 -3
  1815. package/lib/routes/ps/trophy.ts +36 -44
  1816. package/lib/routes/psnine/game.ts +42 -0
  1817. package/lib/routes/psnine/index.ts +58 -0
  1818. package/lib/routes/psnine/namespace.ts +8 -0
  1819. package/lib/routes/psnine/node.ts +80 -0
  1820. package/lib/routes/psnine/shuzhe.ts +43 -0
  1821. package/lib/routes/psnine/trade.ts +58 -0
  1822. package/lib/routes/psyche/topic.ts +1 -1
  1823. package/lib/routes/psyche/utils.ts +0 -3
  1824. package/lib/routes/pts/curations.ts +0 -2
  1825. package/lib/routes/pts/index.ts +0 -2
  1826. package/lib/routes/pts/live.ts +0 -2
  1827. package/lib/routes/pts/projects.ts +0 -2
  1828. package/lib/routes/publico/ciencias.ts +55 -0
  1829. package/lib/routes/publico/culturas.ts +55 -0
  1830. package/lib/routes/publico/economia.ts +55 -0
  1831. package/lib/routes/publico/internacional.ts +55 -0
  1832. package/lib/routes/publico/items-processor.ts +20 -0
  1833. package/lib/routes/publico/mujer.ts +55 -0
  1834. package/lib/routes/publico/namespace.ts +6 -0
  1835. package/lib/routes/publico/opinion.ts +55 -0
  1836. package/lib/routes/publico/politica.ts +56 -0
  1837. package/lib/routes/publico/public.ts +48 -0
  1838. package/lib/routes/publico/sociedad.ts +55 -0
  1839. package/lib/routes/publico/tremending.ts +48 -0
  1840. package/lib/routes/pubmed/trending.ts +0 -2
  1841. package/lib/routes/pubscholar/utils.ts +14 -1
  1842. package/lib/routes/python/namespace.ts +9 -0
  1843. package/lib/routes/python/release.ts +120 -0
  1844. package/lib/routes/qbitai/category.ts +1 -1
  1845. package/lib/routes/qbitai/tag.ts +1 -1
  1846. package/lib/routes/qianzhan/column.ts +2 -2
  1847. package/lib/routes/qianzhan/rank.ts +2 -2
  1848. package/lib/routes/qiche365/recall.ts +2 -2
  1849. package/lib/routes/qidian/author.ts +0 -2
  1850. package/lib/routes/qidian/chapter.ts +1 -1
  1851. package/lib/routes/qidian/free-next.ts +11 -13
  1852. package/lib/routes/qidian/free.ts +13 -15
  1853. package/lib/routes/qingting/podcast.ts +3 -2
  1854. package/lib/routes/qipamaijia/index.ts +4 -3
  1855. package/lib/routes/qm120/news.ts +8 -8
  1856. package/lib/routes/qoo-app/apps/comment.ts +2 -4
  1857. package/lib/routes/qoo-app/news.ts +3 -3
  1858. package/lib/routes/qoo-app/notes/note.ts +0 -2
  1859. package/lib/routes/qoo-app/user/app-comment.ts +0 -2
  1860. package/lib/routes/qq/ac/rank.ts +2 -2
  1861. package/lib/routes/qq/ac/utils.ts +0 -3
  1862. package/lib/routes/qq/cfhd/index.ts +7 -7
  1863. package/lib/routes/qq/fact/index.ts +0 -2
  1864. package/lib/routes/qq/lol/news.ts +1 -1
  1865. package/lib/routes/qq88/index.ts +5 -5
  1866. package/lib/routes/qqorw/index.ts +2 -2
  1867. package/lib/routes/questmobile/report.ts +75 -77
  1868. package/lib/routes/quicker/qa.ts +12 -12
  1869. package/lib/routes/quicker/share.ts +5 -5
  1870. package/lib/routes/quicker/user.ts +2 -2
  1871. package/lib/routes/qust/jw.ts +3 -3
  1872. package/lib/routes/qweather/3days.ts +14 -16
  1873. package/lib/routes/qweather/now.ts +12 -12
  1874. package/lib/routes/qweather/util.tsx +89 -0
  1875. package/lib/routes/qwenlm/blog.ts +75 -0
  1876. package/lib/routes/qwenlm/namespace.ts +6 -0
  1877. package/lib/routes/radio/album.ts +40 -51
  1878. package/lib/routes/radio/index.ts +0 -2
  1879. package/lib/routes/radio/templates/description.art +2 -2
  1880. package/lib/routes/radio/zhibo.ts +0 -2
  1881. package/lib/routes/radio-canada/latest.ts +32 -19
  1882. package/lib/routes/railway/index.ts +73 -0
  1883. package/lib/routes/railway/namespace.ts +8 -0
  1884. package/lib/routes/raspberrypi/magazine.ts +172 -0
  1885. package/lib/routes/raspberrypi/namespace.ts +9 -0
  1886. package/lib/routes/raspberrypi/templates/description.art +21 -0
  1887. package/lib/routes/rattibha/templates/description.art +12 -0
  1888. package/lib/routes/rattibha/user.ts +33 -24
  1889. package/lib/routes/rawkuma/manga.ts +1 -2
  1890. package/lib/routes/readhub/daily.ts +3 -3
  1891. package/lib/routes/readhub/index.ts +3 -5
  1892. package/lib/routes/readhub/util.ts +0 -3
  1893. package/lib/routes/rebase/geekdaily.ts +1 -1
  1894. package/lib/routes/resonac/products.ts +1 -1
  1895. package/lib/routes/reuters/common.ts +15 -5
  1896. package/lib/routes/reuters/investigates.ts +4 -4
  1897. package/lib/routes/rfi/namespace.ts +4 -1
  1898. package/lib/routes/rfi/news.ts +15 -4
  1899. package/lib/routes/rockthejvm/articles.ts +167 -0
  1900. package/lib/routes/rockthejvm/namespace.ts +9 -0
  1901. package/lib/routes/rockthejvm/templates/description.art +7 -0
  1902. package/lib/routes/rodong/news.ts +2 -2
  1903. package/lib/routes/routledge/book-series.ts +0 -2
  1904. package/lib/routes/rsc/journal.ts +3 -5
  1905. package/lib/routes/rsshub/routes.ts +2 -2
  1906. package/lib/routes/rsshub/transform/html.ts +7 -7
  1907. package/lib/routes/rsshub/transform/json.ts +10 -10
  1908. package/lib/routes/ruankao/news.ts +26 -10
  1909. package/lib/routes/ruc/ai.ts +3 -3
  1910. package/lib/routes/ruc/hr.ts +1 -1
  1911. package/lib/routes/rustcc/jobs.ts +1 -1
  1912. package/lib/routes/rustcc/news.ts +1 -1
  1913. package/lib/routes/sakurazaka46/blog.ts +36 -36
  1914. package/lib/routes/samrdprc/index.ts +241 -0
  1915. package/lib/routes/samrdprc/namespace.ts +7 -0
  1916. package/lib/routes/samrdprc/news.ts +79 -0
  1917. package/lib/routes/sankei/namespace.ts +7 -0
  1918. package/lib/routes/sankei/news.ts +68 -0
  1919. package/lib/routes/sankei/topics.ts +71 -0
  1920. package/lib/routes/sara/index.ts +3 -3
  1921. package/lib/routes/saraba1st/digest.ts +7 -7
  1922. package/lib/routes/saraba1st/namespace.ts +1 -1
  1923. package/lib/routes/saraba1st/templates/digest.art +1 -1
  1924. package/lib/routes/saraba1st/thread.ts +10 -6
  1925. package/lib/routes/sass/gs/index.ts +2 -2
  1926. package/lib/routes/science/blogs.ts +2 -2
  1927. package/lib/routes/science/cover.ts +0 -2
  1928. package/lib/routes/science/current.ts +7 -7
  1929. package/lib/routes/science/utils.ts +0 -3
  1930. package/lib/routes/sciencedirect/call-for-paper.ts +0 -2
  1931. package/lib/routes/sciencedirect/current-issue.ts +93 -0
  1932. package/lib/routes/sciencenet/blog.ts +9 -9
  1933. package/lib/routes/sciencenet/user.ts +1 -1
  1934. package/lib/routes/scientificamerican/podcast.ts +2 -5
  1935. package/lib/routes/scitechvista/index.ts +99 -0
  1936. package/lib/routes/scitechvista/namespace.ts +7 -0
  1937. package/lib/routes/scitechvista/templates/description.art +6 -0
  1938. package/lib/routes/scmp/index.ts +15 -10
  1939. package/lib/routes/scoop/apps.ts +186 -0
  1940. package/lib/routes/scoop/namespace.ts +9 -0
  1941. package/lib/routes/scoop/templates/description.art +56 -0
  1942. package/lib/routes/scpta/namespace.ts +8 -0
  1943. package/lib/routes/scpta/news.ts +101 -0
  1944. package/lib/routes/sctv/programme.ts +47 -49
  1945. package/lib/routes/scut/gzic/notice.ts +2 -2
  1946. package/lib/routes/scut/jwc/news.ts +1 -1
  1947. package/lib/routes/scut/jwc/notice.ts +3 -3
  1948. package/lib/routes/scut/jwc/school.ts +3 -3
  1949. package/lib/routes/scut/smae/notice.ts +2 -2
  1950. package/lib/routes/sdo/ff14risingstones/api.ts +78 -0
  1951. package/lib/routes/sdo/ff14risingstones/constant.ts +338 -0
  1952. package/lib/routes/sdo/ff14risingstones/posts.ts +80 -0
  1953. package/lib/routes/sdo/ff14risingstones/strats.ts +75 -0
  1954. package/lib/routes/sdo/ff14risingstones/templates/duties-party.art +41 -0
  1955. package/lib/routes/sdo/ff14risingstones/templates/fc-party.art +26 -0
  1956. package/lib/routes/sdo/ff14risingstones/templates/novice-network-party.art +9 -0
  1957. package/lib/routes/sdo/ff14risingstones/templates/rp-party.art +15 -0
  1958. package/lib/routes/sdo/ff14risingstones/timeline.ts +31 -0
  1959. package/lib/routes/sdo/ff14risingstones/types/dynamic.ts +50 -0
  1960. package/lib/routes/sdo/ff14risingstones/types/index.ts +3 -0
  1961. package/lib/routes/sdo/ff14risingstones/types/other.ts +57 -0
  1962. package/lib/routes/sdo/ff14risingstones/types/party.ts +111 -0
  1963. package/lib/routes/sdo/ff14risingstones/user-dynamics.ts +32 -0
  1964. package/lib/routes/sdo/ff14risingstones/user-posts.ts +32 -0
  1965. package/lib/routes/sdo/ff14risingstones/user-resently.ts +38 -0
  1966. package/lib/routes/sdo/ff14risingstones/user-strats.ts +32 -0
  1967. package/lib/routes/sdo/ff14risingstones/utils.ts +215 -0
  1968. package/lib/routes/sdo/namespace.ts +7 -0
  1969. package/lib/routes/sdu/cmse.ts +5 -5
  1970. package/lib/routes/sdu/cs/index.ts +4 -4
  1971. package/lib/routes/sdu/epe.ts +5 -5
  1972. package/lib/routes/sdu/gjsw.ts +2 -2
  1973. package/lib/routes/sdu/mech.ts +5 -6
  1974. package/lib/routes/sdu/qd/xszxqd.ts +2 -2
  1975. package/lib/routes/sdu/qd/xyb.ts +2 -2
  1976. package/lib/routes/sdu/sc.ts +5 -5
  1977. package/lib/routes/sdu/wh/jwc.ts +2 -2
  1978. package/lib/routes/sdu/wh/news.ts +2 -2
  1979. package/lib/routes/sdu/ygb.ts +2 -2
  1980. package/lib/routes/sdust/yjsy/zhaosheng.ts +6 -6
  1981. package/lib/routes/secretsanfrancisco/namespace.ts +7 -0
  1982. package/lib/routes/secretsanfrancisco/rss.ts +101 -0
  1983. package/lib/routes/secretsanfrancisco/templates/description.art +9 -0
  1984. package/lib/routes/seekingalpha/index.ts +2 -4
  1985. package/lib/routes/sehuatang/index.ts +36 -38
  1986. package/lib/routes/sehuatang/user.ts +1 -0
  1987. package/lib/routes/sensortower/blog.ts +2 -4
  1988. package/lib/routes/setn/index.ts +18 -9
  1989. package/lib/routes/seu/cse/index.ts +2 -2
  1990. package/lib/routes/seu/cyber/index.ts +78 -0
  1991. package/lib/routes/seu/yzb/index.ts +2 -2
  1992. package/lib/routes/shcstheatre/programs.ts +0 -2
  1993. package/lib/routes/shiep/index.ts +16 -18
  1994. package/lib/routes/shisu/news.ts +2 -2
  1995. package/lib/routes/shmeea/self-study.ts +1 -1
  1996. package/lib/routes/shmtu/portal.ts +0 -2
  1997. package/lib/routes/shoac/recent-show.ts +0 -2
  1998. package/lib/routes/shopback/store.ts +3 -3
  1999. package/lib/routes/shopify/apps/[handle].reviews.ts +2 -2
  2000. package/lib/routes/shopify/apps/search.ts +6 -3
  2001. package/lib/routes/shoppingdesign/posts.ts +26 -25
  2002. package/lib/routes/showstart/utils.ts +1 -1
  2003. package/lib/routes/shu/global.ts +6 -5
  2004. package/lib/routes/shu/gs.ts +2 -2
  2005. package/lib/routes/shu/index.ts +2 -2
  2006. package/lib/routes/shu/jwb.ts +2 -2
  2007. package/lib/routes/shu/xxgk.ts +107 -0
  2008. package/lib/routes/shu/xykd.ts +2 -2
  2009. package/lib/routes/shuiguopai/index.ts +3 -2
  2010. package/lib/routes/sicau/dky.ts +5 -5
  2011. package/lib/routes/sicau/jiaowu.ts +42 -34
  2012. package/lib/routes/sicau/yan.ts +5 -5
  2013. package/lib/routes/sicau/zsjy.ts +5 -5
  2014. package/lib/routes/simpleinfo/index.ts +12 -14
  2015. package/lib/routes/sina/discovery.ts +2 -2
  2016. package/lib/routes/sina/finance/china.ts +2 -2
  2017. package/lib/routes/sina/finance/stock/usstock.ts +2 -2
  2018. package/lib/routes/sina/rollnews.ts +2 -2
  2019. package/lib/routes/sina/utils.ts +0 -3
  2020. package/lib/routes/sinchew/index.ts +0 -2
  2021. package/lib/routes/sis001/author.ts +1 -0
  2022. package/lib/routes/sis001/forum.ts +1 -0
  2023. package/lib/routes/sjtu/gs.ts +11 -11
  2024. package/lib/routes/sjtu/jwc.ts +3 -3
  2025. package/lib/routes/sjtu/seiee/icisee.ts +67 -0
  2026. package/lib/routes/sjtu/tongqu/activity.ts +2 -4
  2027. package/lib/routes/sjtu/yzb/zkxx.ts +2 -2
  2028. package/lib/routes/skeb/following-creators.ts +1 -0
  2029. package/lib/routes/skeb/following-works.ts +1 -0
  2030. package/lib/routes/skeb/friend-works.ts +1 -0
  2031. package/lib/routes/skeb/index.ts +1 -0
  2032. package/lib/routes/skeb/search.ts +1 -0
  2033. package/lib/routes/skeb/utils.ts +0 -3
  2034. package/lib/routes/skeb/works.ts +44 -25
  2035. package/lib/routes/skebetter/illust.ts +1 -0
  2036. package/lib/routes/skebetter/index.ts +1 -0
  2037. package/lib/routes/skebetter/manga.ts +1 -0
  2038. package/lib/routes/slowmist/slowmist.ts +3 -3
  2039. package/lib/routes/smartlink/index.ts +84 -0
  2040. package/lib/routes/smartlink/namespace.ts +7 -0
  2041. package/lib/routes/smashingmagazine/category.ts +34 -34
  2042. package/lib/routes/smzdm/article.ts +19 -3
  2043. package/lib/routes/smzdm/baoliao.ts +19 -3
  2044. package/lib/routes/smzdm/haowen-fenlei.ts +21 -5
  2045. package/lib/routes/smzdm/haowen.ts +19 -3
  2046. package/lib/routes/smzdm/keyword.ts +15 -2
  2047. package/lib/routes/smzdm/product.ts +19 -3
  2048. package/lib/routes/smzdm/ranking.ts +172 -156
  2049. package/lib/routes/smzdm/utils.ts +7 -0
  2050. package/lib/routes/snowpeak/us-new-arrivals.ts +4 -6
  2051. package/lib/routes/sobooks/index.ts +9 -9
  2052. package/lib/routes/sobooks/tag.ts +7 -7
  2053. package/lib/routes/sobooks/utils.ts +3 -3
  2054. package/lib/routes/sogou/search.ts +0 -2
  2055. package/lib/routes/sohu/mobile.ts +149 -0
  2056. package/lib/routes/sohu/mp.ts +22 -12
  2057. package/lib/routes/solidot/main.ts +1 -1
  2058. package/lib/routes/sotwe/namespace.ts +1 -0
  2059. package/lib/routes/sotwe/user.ts +98 -0
  2060. package/lib/routes/soundofhope/channel.ts +3 -3
  2061. package/lib/routes/southcn/nfapp/column.ts +0 -2
  2062. package/lib/routes/southcn/nfapp/reporter.ts +0 -2
  2063. package/lib/routes/spankbang/new-videos.ts +2 -3
  2064. package/lib/routes/spglobal/ratings.ts +1 -1
  2065. package/lib/routes/spotify/artist.ts +1 -1
  2066. package/lib/routes/spotify/playlist.ts +4 -1
  2067. package/lib/routes/spotify/saved.ts +1 -1
  2068. package/lib/routes/spotify/show.ts +2 -2
  2069. package/lib/routes/springer/journal.ts +5 -7
  2070. package/lib/routes/sputniknews/index.ts +38 -38
  2071. package/lib/routes/sqmc/www.ts +3 -3
  2072. package/lib/routes/sse/convert.ts +11 -5
  2073. package/lib/routes/sse/disclosure.ts +9 -5
  2074. package/lib/routes/sse/inquire.ts +0 -2
  2075. package/lib/routes/sse/renewal.ts +2 -4
  2076. package/lib/routes/sse/sselawsrules.ts +27 -27
  2077. package/lib/routes/ssm/news.ts +14 -18
  2078. package/lib/routes/sspai/activity.ts +1 -1
  2079. package/lib/routes/sspai/author.ts +1 -1
  2080. package/lib/routes/sspai/bookmarks.ts +1 -1
  2081. package/lib/routes/sspai/column.ts +1 -1
  2082. package/lib/routes/sspai/index.ts +6 -2
  2083. package/lib/routes/sspai/matrix.ts +1 -1
  2084. package/lib/routes/sspai/series-update.ts +1 -1
  2085. package/lib/routes/sspai/series.ts +22 -24
  2086. package/lib/routes/sspai/shortcuts-gallery.ts +1 -1
  2087. package/lib/routes/sspai/tag.ts +1 -1
  2088. package/lib/routes/sspai/topic.ts +1 -1
  2089. package/lib/routes/sspai/topics.ts +1 -1
  2090. package/lib/routes/stanford/blog.ts +77 -0
  2091. package/lib/routes/stanford/namespace.ts +7 -0
  2092. package/lib/routes/startuplatte/index.ts +6 -6
  2093. package/lib/routes/stcn/index.ts +241 -136
  2094. package/lib/routes/stcn/kx.ts +144 -0
  2095. package/lib/routes/stcn/rank.ts +248 -0
  2096. package/lib/routes/stdaily/digitalpaper.ts +9 -11
  2097. package/lib/routes/steam/appcommunityfeed.ts +0 -2
  2098. package/lib/routes/steam/curator.ts +0 -3
  2099. package/lib/routes/steam/news.ts +281 -0
  2100. package/lib/routes/steam/search.ts +1 -2
  2101. package/lib/routes/steam/workshop-search.ts +0 -2
  2102. package/lib/routes/stheadline/std/realtime.ts +24 -16
  2103. package/lib/routes/stockedge/daily-news.ts +1 -1
  2104. package/lib/routes/storm/channel.ts +80 -0
  2105. package/lib/routes/storm/index.ts +5 -5
  2106. package/lib/routes/storyfm/episodes.ts +0 -2
  2107. package/lib/routes/storyfm/index.ts +3 -3
  2108. package/lib/routes/straitstimes/index.ts +0 -2
  2109. package/lib/routes/surfshark/blog.ts +273 -79
  2110. package/lib/routes/surfshark/templates/description.art +16 -4
  2111. package/lib/routes/sustainabilitymag/articles.ts +1 -1
  2112. package/lib/routes/swjtu/namespace.ts +1 -1
  2113. package/lib/routes/swjtu/scai.ts +117 -0
  2114. package/lib/routes/swjtu/{scai/bks.ts → sports.ts} +16 -15
  2115. package/lib/routes/swjtu/utils.ts +0 -3
  2116. package/lib/routes/swjtu/xg.ts +3 -3
  2117. package/lib/routes/swpu/bgw.ts +2 -2
  2118. package/lib/routes/swpu/cjxy.ts +3 -3
  2119. package/lib/routes/swpu/dean.ts +3 -3
  2120. package/lib/routes/swpu/dxy.ts +3 -3
  2121. package/lib/routes/swpu/is.ts +3 -3
  2122. package/lib/routes/swpu/scs.ts +2 -2
  2123. package/lib/routes/syosetu/dev.ts +1 -1
  2124. package/lib/routes/syosetu/index.ts +1 -1
  2125. package/lib/routes/syosetu/ranking-isekai.ts +2 -5
  2126. package/lib/routes/syosetu/ranking-r18.ts +1 -4
  2127. package/lib/routes/syosetu/ranking.ts +1 -4
  2128. package/lib/routes/syosetu/search.ts +1 -4
  2129. package/lib/routes/sysu/ygafz.ts +10 -36
  2130. package/lib/routes/szftedu/gonggao.ts +1 -1
  2131. package/lib/routes/szse/disclosure/listed-notice.ts +149 -0
  2132. package/lib/routes/szse/inquire.ts +5 -7
  2133. package/lib/routes/szse/projectdynamic.ts +21 -23
  2134. package/lib/routes/szse/rule.ts +70 -70
  2135. package/lib/routes/szse/templates/inquire.art +1 -1
  2136. package/lib/routes/szu/yz/index.ts +2 -2
  2137. package/lib/routes/t66y/index.ts +13 -12
  2138. package/lib/routes/t66y/post.ts +1 -0
  2139. package/lib/routes/tailwindcss/blog.ts +26 -0
  2140. package/lib/routes/tailwindcss/constants.ts +2 -0
  2141. package/lib/routes/tailwindcss/namespace.ts +7 -0
  2142. package/lib/routes/tailwindcss/utils.ts +68 -0
  2143. package/lib/routes/tangshufang/index.ts +8 -8
  2144. package/lib/routes/taobao/mysql.ts +157 -0
  2145. package/lib/routes/taobao/namespace.ts +2 -2
  2146. package/lib/routes/taobao/zhongchou.ts +2 -4
  2147. package/lib/routes/taoguba/index.ts +2 -2
  2148. package/lib/routes/taptap/changelog-intl.ts +3 -3
  2149. package/lib/routes/taptap/topic.ts +16 -9
  2150. package/lib/routes/taptap/utils.ts +0 -3
  2151. package/lib/routes/tass/news.ts +2 -2
  2152. package/lib/routes/techcrunch/category.ts +48 -0
  2153. package/lib/routes/techcrunch/news.ts +1 -2
  2154. package/lib/routes/techflowpost/express.ts +1 -1
  2155. package/lib/routes/techflowpost/index.ts +1 -1
  2156. package/lib/routes/techpowerup/index.ts +11 -11
  2157. package/lib/routes/techpowerup/namespace.ts +1 -1
  2158. package/lib/routes/techpowerup/review.ts +12 -12
  2159. package/lib/routes/techpowerup/utils.ts +2 -2
  2160. package/lib/routes/telecompaper/news.ts +6 -6
  2161. package/lib/routes/telecompaper/search.ts +9 -9
  2162. package/lib/routes/telegram/blog.ts +2 -2
  2163. package/lib/routes/telegram/channel-media.ts +249 -0
  2164. package/lib/routes/telegram/channel.ts +488 -492
  2165. package/lib/routes/telegram/scripts/get-telegram-session.mjs +1 -1
  2166. package/lib/routes/telegram/stickerpack.ts +19 -10
  2167. package/lib/routes/telegram/stories.ts +130 -0
  2168. package/lib/routes/telegram/tglib/channel.ts +147 -118
  2169. package/lib/routes/telegram/tglib/client.ts +38 -140
  2170. package/lib/routes/tencent/news/author.ts +40 -39
  2171. package/lib/routes/tencent/news/coronavirus/data.ts +0 -2
  2172. package/lib/routes/tencent/news/coronavirus/total.ts +0 -2
  2173. package/lib/routes/tencent/pvp/newsindex.ts +2 -2
  2174. package/lib/routes/tesla/cx.ts +47 -49
  2175. package/lib/routes/test/api-index.ts +13 -0
  2176. package/lib/routes/test/index.ts +4 -0
  2177. package/lib/routes/tfc-taiwan/category.ts +53 -0
  2178. package/lib/routes/tfc-taiwan/index.ts +26 -10
  2179. package/lib/routes/tfc-taiwan/namespace.ts +4 -1
  2180. package/lib/routes/tfc-taiwan/utils.ts +24 -52
  2181. package/lib/routes/tgbus/list.ts +2 -2
  2182. package/lib/routes/the/index.ts +13 -15
  2183. package/lib/routes/theatlantic/news.ts +2 -2
  2184. package/lib/routes/theatlantic/utils.ts +0 -3
  2185. package/lib/routes/theblock/index.ts +142 -0
  2186. package/lib/routes/theblock/namespace.ts +7 -0
  2187. package/lib/routes/theblockbeats/index.ts +8 -11
  2188. package/lib/routes/thecover/channel.ts +8 -10
  2189. package/lib/routes/thegadgetflow/namespace.ts +7 -0
  2190. package/lib/routes/thegadgetflow/rss.ts +99 -0
  2191. package/lib/routes/thegadgetflow/templates/description.art +9 -0
  2192. package/lib/routes/theinitium/app.ts +85 -56
  2193. package/lib/routes/theinitium/author.ts +1 -1
  2194. package/lib/routes/theinitium/channel.ts +4 -4
  2195. package/lib/routes/theinitium/tags.ts +1 -1
  2196. package/lib/routes/theinitium/templates/description.art +0 -3
  2197. package/lib/routes/themoviedb/episodes.ts +1 -1
  2198. package/lib/routes/themoviedb/seasons.ts +1 -1
  2199. package/lib/routes/themoviedb/sheet.ts +6 -6
  2200. package/lib/routes/themoviedb/utils.ts +0 -3
  2201. package/lib/routes/thenewslens/index.ts +0 -2
  2202. package/lib/routes/thepaper/839studio/category.ts +8 -12
  2203. package/lib/routes/thepaper/839studio/studio.ts +8 -12
  2204. package/lib/routes/thepaper/channel.ts +15 -15
  2205. package/lib/routes/thepaper/factpaper.ts +1 -3
  2206. package/lib/routes/thepaper/featured.ts +1 -1
  2207. package/lib/routes/thepaper/list.ts +99 -99
  2208. package/lib/routes/thepaper/sidebar.ts +1 -1
  2209. package/lib/routes/thepaper/user.ts +1 -1
  2210. package/lib/routes/thepaper/utils.ts +8 -6
  2211. package/lib/routes/thepetcity/index.ts +7 -7
  2212. package/lib/routes/theverge/index.ts +99 -77
  2213. package/lib/routes/theverge/templates/header.art +19 -0
  2214. package/lib/routes/thewirehindi/category.ts +78 -0
  2215. package/lib/routes/thewirehindi/index.ts +43 -0
  2216. package/lib/routes/thewirehindi/namespace.ts +7 -0
  2217. package/lib/routes/thewirehindi/templates/description.art +9 -0
  2218. package/lib/routes/thewirehindi/utils.ts +33 -0
  2219. package/lib/routes/thoughtco/index.ts +293 -295
  2220. package/lib/routes/threads/index.ts +74 -55
  2221. package/lib/routes/threads/utils.ts +66 -80
  2222. package/lib/routes/thzt/index.ts +72 -0
  2223. package/lib/routes/thzt/namespace.ts +8 -0
  2224. package/lib/routes/tidb/blog.ts +314 -0
  2225. package/lib/routes/tidb/namespace.ts +9 -0
  2226. package/lib/routes/tiktok/user.ts +1 -3
  2227. package/lib/routes/timednews/news.ts +7 -7
  2228. package/lib/routes/tingshuitz/changsha.ts +7 -7
  2229. package/lib/routes/tingshuitz/dongguan.ts +9 -13
  2230. package/lib/routes/tingshuitz/hangzhou.ts +9 -13
  2231. package/lib/routes/tingshuitz/nanjing.ts +13 -15
  2232. package/lib/routes/tingshuitz/shenzhen.ts +0 -2
  2233. package/lib/routes/tingshuitz/xian.ts +9 -11
  2234. package/lib/routes/tingshuitz/xiaoshan.ts +9 -13
  2235. package/lib/routes/tingshuitz/yangjiang.ts +10 -12
  2236. package/lib/routes/tingtingfm/program.ts +1 -3
  2237. package/lib/routes/tisi/index.ts +3 -3
  2238. package/lib/routes/tju/cic/index.ts +5 -5
  2239. package/lib/routes/tju/news/index.ts +3 -3
  2240. package/lib/routes/tju/oaa/index.ts +5 -5
  2241. package/lib/routes/tju/yzb/index.ts +7 -7
  2242. package/lib/routes/tmtpost/column.ts +298 -0
  2243. package/lib/routes/tmtpost/namespace.ts +9 -0
  2244. package/lib/routes/tmtpost/new.ts +42 -0
  2245. package/lib/routes/tmtpost/nictation.ts +59 -0
  2246. package/lib/routes/tmtpost/templates/description.art +7 -0
  2247. package/lib/routes/tmtpost/util.ts +204 -0
  2248. package/lib/routes/tokeninsight/report.ts +3 -3
  2249. package/lib/routes/tongji/gs.ts +66 -0
  2250. package/lib/routes/tongji/sse/notice.ts +2 -2
  2251. package/lib/routes/tongji/yjs.ts +34 -20
  2252. package/lib/routes/tophub/index.ts +1 -1
  2253. package/lib/routes/tophub/list.ts +1 -3
  2254. package/lib/routes/topys/index.ts +1 -1
  2255. package/lib/routes/toranoana/namespace.ts +7 -0
  2256. package/lib/routes/toranoana/news.ts +110 -0
  2257. package/lib/routes/toutiao/a-bogus.ts +15 -15
  2258. package/lib/routes/toutiao/user.ts +3 -6
  2259. package/lib/routes/tradingview/blog.ts +42 -44
  2260. package/lib/routes/transcriptforest/index.ts +0 -2
  2261. package/lib/routes/transformer-circuits/index.ts +119 -0
  2262. package/lib/routes/transformer-circuits/namespace.ts +7 -0
  2263. package/lib/routes/transformer-circuits/templates/article.art +62 -0
  2264. package/lib/routes/trendforce/namespace.ts +9 -0
  2265. package/lib/routes/trendforce/new.ts +113 -0
  2266. package/lib/routes/tribalfootball/latest.ts +3 -5
  2267. package/lib/routes/trow/portal.ts +11 -15
  2268. package/lib/routes/tsinghua/lib/zydt.ts +3 -3
  2269. package/lib/routes/tsinghua/news.ts +87 -0
  2270. package/lib/routes/tumblr/namespace.ts +17 -0
  2271. package/lib/routes/tumblr/posts.ts +74 -0
  2272. package/lib/routes/tumblr/utils.ts +110 -0
  2273. package/lib/routes/tvb/news.ts +6 -8
  2274. package/lib/routes/tver/namespace.ts +7 -0
  2275. package/lib/routes/tver/series.ts +98 -0
  2276. package/lib/routes/tvtropes/featured.ts +2 -4
  2277. package/lib/routes/twitch/live.ts +1 -1
  2278. package/lib/routes/twitch/video.ts +1 -1
  2279. package/lib/routes/twitter/api/developer-api/user.ts +2 -2
  2280. package/lib/routes/twitter/api/mobile-api/api.ts +1 -1
  2281. package/lib/routes/twitter/api/mobile-api/login.ts +1 -1
  2282. package/lib/routes/twitter/api/web-api/api.ts +5 -1
  2283. package/lib/routes/twitter/api/web-api/login.ts +1 -3
  2284. package/lib/routes/twitter/api/web-api/utils.ts +24 -2
  2285. package/lib/routes/twitter/keyword.ts +1 -1
  2286. package/lib/routes/twitter/list.ts +1 -1
  2287. package/lib/routes/twitter/media.ts +1 -1
  2288. package/lib/routes/twitter/namespace.ts +2 -1
  2289. package/lib/routes/twitter/user.ts +4 -5
  2290. package/lib/routes/twitter/utils.ts +40 -30
  2291. package/lib/routes/twreporter/category.ts +1 -1
  2292. package/lib/routes/twreporter/fetch-article.ts +0 -3
  2293. package/lib/routes/twreporter/newest.ts +1 -1
  2294. package/lib/routes/txks/namespace.ts +7 -0
  2295. package/lib/routes/txks/news.ts +107 -0
  2296. package/lib/routes/txrjy/fornumtopic.ts +9 -11
  2297. package/lib/routes/typst/universe.ts +1 -1
  2298. package/lib/routes/uber/blog.ts +87 -46
  2299. package/lib/routes/ucas/index.ts +3 -3
  2300. package/lib/routes/uchicago/current.ts +3 -3
  2301. package/lib/routes/udn/breaking-news.ts +6 -8
  2302. package/lib/routes/udn/global/index.ts +38 -26
  2303. package/lib/routes/udn/global/tag.ts +17 -10
  2304. package/lib/routes/uestc/auto.ts +4 -4
  2305. package/lib/routes/uestc/cqe.ts +6 -6
  2306. package/lib/routes/uestc/gr.ts +3 -3
  2307. package/lib/routes/uestc/jwc.ts +3 -3
  2308. package/lib/routes/uestc/news.ts +5 -5
  2309. package/lib/routes/uestc/scse.ts +4 -4
  2310. package/lib/routes/uestc/sice.ts +4 -4
  2311. package/lib/routes/uestc/sise.ts +6 -6
  2312. package/lib/routes/ulapia/index.ts +6 -6
  2313. package/lib/routes/ulapia/research.ts +3 -3
  2314. package/lib/routes/unipd/ilbolive/news.ts +104 -0
  2315. package/lib/routes/unipd/namespace.ts +7 -0
  2316. package/lib/routes/unusualwhales/news.ts +10 -8
  2317. package/lib/routes/upc/jsj.ts +2 -2
  2318. package/lib/routes/upc/jwc.ts +34 -48
  2319. package/lib/routes/upc/main.ts +2 -2
  2320. package/lib/routes/uptimerobot/rss.ts +3 -5
  2321. package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +3 -2
  2322. package/lib/routes/uraaka-joshi/uraaka-joshi.ts +45 -46
  2323. package/lib/routes/urbandictionary/random.ts +0 -2
  2324. package/lib/routes/usepanda/index.ts +2 -2
  2325. package/lib/routes/ustb/tj/news.ts +3 -3
  2326. package/lib/routes/ustb/yjsy/news.ts +42 -46
  2327. package/lib/routes/ustc/eeis.ts +2 -2
  2328. package/lib/routes/ustc/gs.ts +2 -2
  2329. package/lib/routes/ustc/index.ts +6 -6
  2330. package/lib/routes/ustc/job.ts +2 -2
  2331. package/lib/routes/ustc/jwc.ts +7 -7
  2332. package/lib/routes/ustc/math.ts +2 -2
  2333. package/lib/routes/ustc/scms.ts +2 -2
  2334. package/lib/routes/ustc/sist.ts +2 -2
  2335. package/lib/routes/usts/jwch.ts +5 -5
  2336. package/lib/routes/utgd/category.ts +3 -3
  2337. package/lib/routes/utgd/timeline.ts +1 -1
  2338. package/lib/routes/utgd/topic.ts +2 -2
  2339. package/lib/routes/utgd/utils.ts +1 -4
  2340. package/lib/routes/uw/gix/news.ts +5 -5
  2341. package/lib/routes/v2ex/tab.ts +1 -1
  2342. package/lib/routes/v2ex/topics.ts +1 -1
  2343. package/lib/routes/vcb-s/category.ts +2 -4
  2344. package/lib/routes/vcb-s/index.ts +0 -2
  2345. package/lib/routes/verfghbw/press.ts +3 -3
  2346. package/lib/routes/vertikal/latest.ts +1 -1
  2347. package/lib/routes/vice/topic.ts +1 -3
  2348. package/lib/routes/vimeo/category.ts +1 -3
  2349. package/lib/routes/vimeo/channel.ts +16 -20
  2350. package/lib/routes/vimeo/usr-videos.ts +1 -3
  2351. package/lib/routes/visionias/daily-news-summary.ts +65 -0
  2352. package/lib/routes/visionias/monthly-magazine.ts +68 -0
  2353. package/lib/routes/visionias/news-today.ts +3 -13
  2354. package/lib/routes/visionias/utils.ts +5 -8
  2355. package/lib/routes/visionias/weekly-focus.ts +2 -2
  2356. package/lib/routes/visualstudio/code-blog.ts +67 -0
  2357. package/lib/routes/visualstudio/namespace.ts +7 -0
  2358. package/lib/routes/vocus/publication.ts +1 -1
  2359. package/lib/routes/vocus/user.ts +1 -1
  2360. package/lib/routes/vom/featured.ts +2 -2
  2361. package/lib/routes/voronoiapp/common.ts +1 -1
  2362. package/lib/routes/wainao/namespace.ts +8 -0
  2363. package/lib/routes/wainao/templates/description.art +9 -0
  2364. package/lib/routes/wainao/topics.ts +211 -0
  2365. package/lib/routes/wainao/wainao-reads.ts +49 -0
  2366. package/lib/routes/wallhaven/index.ts +3 -3
  2367. package/lib/routes/wallpaperhub/index.ts +0 -2
  2368. package/lib/routes/wallstreetcn/live.ts +2 -4
  2369. package/lib/routes/wallstreetcn/news.ts +12 -12
  2370. package/lib/routes/warhammer-community/namespace.ts +7 -0
  2371. package/lib/routes/warhammer-community/news.ts +73 -0
  2372. package/lib/routes/warp/blog.ts +77 -0
  2373. package/lib/routes/warp/namespace.ts +7 -0
  2374. package/lib/routes/warthunder/news.ts +0 -2
  2375. package/lib/routes/washingtonpost/app.ts +3 -5
  2376. package/lib/routes/wdfxw/bookfree.ts +528 -0
  2377. package/lib/routes/wdfxw/namespace.ts +8 -0
  2378. package/lib/routes/wdfxw/templates/description.art +13 -0
  2379. package/lib/routes/wechat/data258.ts +4 -4
  2380. package/lib/routes/wechat/msgalbum.ts +1 -1
  2381. package/lib/routes/wechat/sogou.ts +171 -50
  2382. package/lib/routes/wechat/tgchannel.ts +117 -119
  2383. package/lib/routes/weibo/friends.ts +2 -2
  2384. package/lib/routes/weibo/group.ts +2 -2
  2385. package/lib/routes/weibo/keyword.ts +2 -2
  2386. package/lib/routes/weibo/namespace.ts +1 -0
  2387. package/lib/routes/weibo/search/hot.ts +2 -4
  2388. package/lib/routes/weibo/timeline.ts +4 -2
  2389. package/lib/routes/weibo/user-bookmarks.ts +2 -2
  2390. package/lib/routes/weibo/user.ts +21 -12
  2391. package/lib/routes/weibo/utils.ts +29 -13
  2392. package/lib/routes/wellcee/rent.ts +1 -3
  2393. package/lib/routes/wenku8/index.ts +3 -3
  2394. package/lib/routes/wfu/jwc.ts +18 -20
  2395. package/lib/routes/wfu/news.ts +22 -24
  2396. package/lib/routes/whitehouse/news.ts +82 -0
  2397. package/lib/routes/who/news-room.ts +14 -16
  2398. package/lib/routes/who/news.ts +3 -3
  2399. package/lib/routes/who/speeches.ts +3 -3
  2400. package/lib/routes/whu/cs.ts +2 -2
  2401. package/lib/routes/whu/gs/index.ts +4 -4
  2402. package/lib/routes/whu/news.ts +0 -2
  2403. package/lib/routes/whu/swrh.ts +2 -2
  2404. package/lib/routes/whu/util.ts +0 -3
  2405. package/lib/routes/wikipedia/current-events.ts +413 -0
  2406. package/lib/routes/wikipedia/namespace.ts +7 -0
  2407. package/lib/routes/windsurf/blog.ts +118 -0
  2408. package/lib/routes/windsurf/changelog.ts +100 -0
  2409. package/lib/routes/windsurf/namespace.ts +9 -0
  2410. package/lib/routes/windsurf/templates/description.art +21 -0
  2411. package/lib/routes/winstall/update.ts +0 -2
  2412. package/lib/routes/wise/pair.ts +1 -3
  2413. package/lib/routes/wizfile/index.ts +3 -3
  2414. package/lib/routes/wmc-bj/publish.ts +0 -2
  2415. package/lib/routes/wmpvp/index.ts +2 -2
  2416. package/lib/routes/wnacg/category.ts +3 -0
  2417. package/lib/routes/wnacg/common.ts +0 -3
  2418. package/lib/routes/wnacg/index.ts +3 -0
  2419. package/lib/routes/wnacg/tag.ts +3 -0
  2420. package/lib/routes/wohnnet/index.ts +129 -0
  2421. package/lib/routes/wohnnet/namespace.ts +8 -0
  2422. package/lib/routes/wordpress/util.ts +1 -1
  2423. package/lib/routes/woshipm/popular.ts +5 -4
  2424. package/lib/routes/wsj/news.ts +9 -8
  2425. package/lib/routes/wsj/utils.ts +1 -12
  2426. package/lib/routes/wsyu/news.ts +8 -8
  2427. package/lib/routes/wtu/index.ts +2 -2
  2428. package/lib/routes/wtu/job.ts +5 -5
  2429. package/lib/routes/wyzxwk/article.ts +21 -21
  2430. package/lib/routes/wzu/news.ts +13 -17
  2431. package/lib/routes/x-mol/news.ts +0 -2
  2432. package/lib/routes/x-mol/paper.ts +17 -22
  2433. package/lib/routes/x6d/index.ts +18 -18
  2434. package/lib/routes/xaufe/jiaowu.ts +2 -2
  2435. package/lib/routes/xaut/index.ts +6 -6
  2436. package/lib/routes/xaut/jwc.ts +6 -6
  2437. package/lib/routes/xaut/rsc.ts +6 -6
  2438. package/lib/routes/xbookcn/blog.ts +1 -0
  2439. package/lib/routes/xiaoheihe/discount.ts +2 -2
  2440. package/lib/routes/xiaoheihe/util.ts +1 -1
  2441. package/lib/routes/xiaohongshu/check-cookie.ts +16 -0
  2442. package/lib/routes/xiaohongshu/user.ts +5 -5
  2443. package/lib/routes/xiaohongshu/util.ts +40 -21
  2444. package/lib/routes/xiaomiyoupin/crowdfunding.ts +0 -2
  2445. package/lib/routes/xiaomiyoupin/utils.ts +0 -3
  2446. package/lib/routes/xiaoyuzhou/podcast.ts +45 -32
  2447. package/lib/routes/xidian/jwc.ts +2 -2
  2448. package/lib/routes/ximalaya/album.ts +32 -70
  2449. package/lib/routes/ximalaya/types.ts +48 -0
  2450. package/lib/routes/ximalaya/utils.ts +11 -9
  2451. package/lib/routes/xinpianchang/rank.ts +7 -7
  2452. package/lib/routes/xinpianchang/util.ts +0 -3
  2453. package/lib/routes/xjtu/2yuan/news.ts +11 -11
  2454. package/lib/routes/xjtu/dean.ts +3 -7
  2455. package/lib/routes/xjtu/ee-jzxx.ts +110 -0
  2456. package/lib/routes/xjtu/ee.ts +3 -3
  2457. package/lib/routes/xjtu/gs/tzgg.ts +3 -3
  2458. package/lib/routes/xjtu/job.ts +3 -5
  2459. package/lib/routes/xjtu/std.ts +2 -4
  2460. package/lib/routes/xjtu/yz.ts +74 -0
  2461. package/lib/routes/xjtu/zs.ts +171 -0
  2462. package/lib/routes/xkb/index.ts +8 -10
  2463. package/lib/routes/xmanhua/index.ts +14 -15
  2464. package/lib/routes/xmnn/epaper.ts +2 -2
  2465. package/lib/routes/xmut/jwc/bkjw.ts +3 -3
  2466. package/lib/routes/xsijishe/forum.ts +1 -0
  2467. package/lib/routes/xsijishe/rank.ts +52 -19
  2468. package/lib/routes/xsijishe/utils.ts +25 -0
  2469. package/lib/routes/xueqiu/cookies.ts +1 -1
  2470. package/lib/routes/xueqiu/stock-comments.ts +0 -2
  2471. package/lib/routes/xueqiu/stock-info.ts +2 -2
  2472. package/lib/routes/xueqiu/timeline.ts +3 -3
  2473. package/lib/routes/xueqiu/user.ts +117 -54
  2474. package/lib/routes/xwenming/index.ts +184 -0
  2475. package/lib/routes/xwenming/namespace.ts +9 -0
  2476. package/lib/routes/xys/new.ts +0 -2
  2477. package/lib/routes/xyu/library.ts +63 -0
  2478. package/lib/routes/xyu/namespace.ts +7 -0
  2479. package/lib/routes/xyu/notices.ts +116 -0
  2480. package/lib/routes/xyzrank/index.ts +0 -2
  2481. package/lib/routes/yahoo/news/index.ts +1 -1
  2482. package/lib/routes/yahoo/news/listid.ts +2 -2
  2483. package/lib/routes/yahoo/news/provider-helper.ts +1 -1
  2484. package/lib/routes/yahoo/news/provider.ts +1 -1
  2485. package/lib/routes/yahoo/news/utils.ts +8 -7
  2486. package/lib/routes/yamibo/bbs/forum.ts +5 -4
  2487. package/lib/routes/yamibo/utils.ts +0 -9
  2488. package/lib/routes/yande/post.ts +6 -3
  2489. package/lib/routes/ycwb/index.ts +6 -8
  2490. package/lib/routes/yenpress/series.ts +1 -4
  2491. package/lib/routes/ygkkk/rss.ts +3 -3
  2492. package/lib/routes/yicai/dt.ts +39 -41
  2493. package/lib/routes/yicai/news.ts +26 -26
  2494. package/lib/routes/yicai/utils.ts +0 -3
  2495. package/lib/routes/yicai/video.ts +36 -36
  2496. package/lib/routes/yilinzazhi/index.ts +1 -1
  2497. package/lib/routes/yilinzazhi/latest.ts +2 -2
  2498. package/lib/routes/ymgal/article.ts +3 -3
  2499. package/lib/routes/ymgal/game.ts +2 -3
  2500. package/lib/routes/yoasobi-music/info.ts +0 -2
  2501. package/lib/routes/yoasobi-music/live.ts +0 -2
  2502. package/lib/routes/yoasobi-music/media.ts +4 -9
  2503. package/lib/routes/yomiuri/news.ts +18 -18
  2504. package/lib/routes/yomujp/level.ts +2 -2
  2505. package/lib/routes/youku/channel.ts +24 -28
  2506. package/lib/routes/youmemark/index.ts +88 -0
  2507. package/lib/routes/youmemark/namespace.ts +7 -0
  2508. package/lib/routes/youtube/api/google.ts +230 -0
  2509. package/lib/routes/youtube/api/subtitles.ts +86 -0
  2510. package/lib/routes/youtube/api/youtubei.ts +104 -0
  2511. package/lib/routes/youtube/channel.ts +45 -46
  2512. package/lib/routes/youtube/charts.ts +30 -30
  2513. package/lib/routes/youtube/community.ts +10 -10
  2514. package/lib/routes/youtube/playlist.ts +11 -30
  2515. package/lib/routes/youtube/subscriptions.ts +3 -11
  2516. package/lib/routes/youtube/user.ts +32 -83
  2517. package/lib/routes/youtube/utils.ts +45 -56
  2518. package/lib/routes/youzhiyouxing/materials.ts +3 -3
  2519. package/lib/routes/yuanliao/index.ts +218 -0
  2520. package/lib/routes/yuanliao/namespace.ts +9 -0
  2521. package/lib/routes/yuque/book.ts +2 -2
  2522. package/lib/routes/yuque/utils.ts +1 -0
  2523. package/lib/routes/yxdown/news.ts +5 -5
  2524. package/lib/routes/yxdown/recommend.ts +3 -3
  2525. package/lib/routes/yxdzqb/index.ts +19 -23
  2526. package/lib/routes/yxrb/home.ts +2 -2
  2527. package/lib/routes/yyets/article.ts +3 -3
  2528. package/lib/routes/yyets/today.ts +9 -13
  2529. package/lib/routes/yystv/category.ts +49 -51
  2530. package/lib/routes/yystv/docs.ts +7 -9
  2531. package/lib/routes/yystv/fetcher.ts +10 -0
  2532. package/lib/routes/zagg/new-arrivals.ts +7 -9
  2533. package/lib/routes/zaimanhua/comic.ts +89 -0
  2534. package/lib/routes/zaimanhua/namespace.ts +7 -0
  2535. package/lib/routes/zaimanhua/template/comic.art +3 -0
  2536. package/lib/routes/zaimanhua/update.ts +87 -0
  2537. package/lib/routes/zaker/channel.ts +2 -5
  2538. package/lib/routes/zaker/focus.ts +2 -5
  2539. package/lib/routes/zaker/utils.ts +1 -1
  2540. package/lib/routes/zaobao/interactive.ts +18 -7
  2541. package/lib/routes/zaobao/other.ts +3 -2
  2542. package/lib/routes/zaobao/realtime.ts +5 -4
  2543. package/lib/routes/zaobao/util.tsx +185 -0
  2544. package/lib/routes/zaobao/zaobao.tsx +23 -0
  2545. package/lib/routes/zaobao/znews.ts +5 -4
  2546. package/lib/routes/zaozao/article.ts +2 -2
  2547. package/lib/routes/zcmu/jwc/index.ts +5 -5
  2548. package/lib/routes/zcmu/yxy/index.ts +5 -5
  2549. package/lib/routes/zcool/discover.ts +51 -53
  2550. package/lib/routes/zcool/top.ts +1 -1
  2551. package/lib/routes/zcool/user.ts +2 -2
  2552. package/lib/routes/zcool/utils.ts +0 -3
  2553. package/lib/routes/zed/blog.ts +75 -0
  2554. package/lib/routes/zed/namespace.ts +7 -0
  2555. package/lib/routes/zhibo8/luxiang.ts +1 -1
  2556. package/lib/routes/zhihu/activities.ts +13 -4
  2557. package/lib/routes/zhihu/all-collections.ts +10 -1
  2558. package/lib/routes/zhihu/answers.ts +33 -55
  2559. package/lib/routes/zhihu/check-cookie.ts +31 -0
  2560. package/lib/routes/zhihu/collection.ts +9 -1
  2561. package/lib/routes/zhihu/daily-section.ts +19 -24
  2562. package/lib/routes/zhihu/daily.ts +8 -11
  2563. package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +5 -5
  2564. package/lib/routes/zhihu/hot.ts +32 -79
  2565. package/lib/routes/zhihu/pin/utils.ts +5 -5
  2566. package/lib/routes/zhihu/posts.ts +14 -6
  2567. package/lib/routes/zhihu/question.ts +7 -1
  2568. package/lib/routes/zhihu/timeline.ts +1 -2
  2569. package/lib/routes/zhihu/topic.ts +11 -5
  2570. package/lib/routes/zhihu/types.ts +29 -29
  2571. package/lib/routes/zhihu/utils.ts +59 -44
  2572. package/lib/routes/zhihu/weekly.ts +7 -7
  2573. package/lib/routes/zhihu/zhuanlan.ts +8 -4
  2574. package/lib/routes/zhitongcaijing/index.ts +16 -18
  2575. package/lib/routes/zhiy/post.ts +0 -2
  2576. package/lib/routes/zhizhuan100/namespace.ts +7 -0
  2577. package/lib/routes/zhizhuan100/report.ts +79 -0
  2578. package/lib/routes/zhonglun/index.ts +3 -5
  2579. package/lib/routes/zhubai/top20.ts +0 -2
  2580. package/lib/routes/zhujiceping/rss.ts +3 -3
  2581. package/lib/routes/zimuxia/index.ts +2 -2
  2582. package/lib/routes/zimuxia/portfolio.ts +2 -2
  2583. package/lib/routes/zjol/paper.ts +2 -2
  2584. package/lib/routes/zju/career/index.ts +12 -16
  2585. package/lib/routes/zju/cse/index.ts +102 -0
  2586. package/lib/routes/zju/cst/custom.ts +13 -18
  2587. package/lib/routes/zju/cst/index.ts +10 -15
  2588. package/lib/routes/zju/grs/index.ts +11 -15
  2589. package/lib/routes/zju/list.ts +6 -6
  2590. package/lib/routes/zju/physics/index.ts +5 -5
  2591. package/lib/routes/zju/sis/index.ts +161 -0
  2592. package/lib/routes/zjut/da/index.ts +3 -3
  2593. package/lib/routes/zjut/news.ts +3 -3
  2594. package/lib/routes/zodgame/forum.ts +1 -2
  2595. package/lib/routes/zongheng/detail.ts +77 -0
  2596. package/lib/routes/zongheng/namespace.ts +7 -0
  2597. package/lib/routes/zotero/versions.ts +13 -17
  2598. package/lib/routes/zrblog/rss.ts +3 -3
  2599. package/lib/routes/zsxq/group.ts +2 -2
  2600. package/lib/routes/zsxq/utils.ts +1 -1
  2601. package/lib/routes/zuvio/utils.ts +0 -3
  2602. package/lib/routes/zxcs/namespace.ts +7 -0
  2603. package/lib/routes/zxcs/novel.ts +95 -0
  2604. package/lib/routes/zyshow/index.ts +0 -2
  2605. package/lib/routes/zyw/hot.ts +2 -2
  2606. package/lib/server.ts +5 -0
  2607. package/lib/setup.test.ts +2 -0
  2608. package/lib/types.ts +107 -58
  2609. package/lib/utils/cache/index.ts +2 -2
  2610. package/lib/utils/camelcase-keys.spec.ts +3 -3
  2611. package/lib/utils/camelcase-keys.ts +4 -3
  2612. package/lib/utils/common-config.test.ts +3 -2
  2613. package/lib/utils/common-config.ts +17 -13
  2614. package/lib/utils/common-utils.ts +1 -1
  2615. package/lib/utils/git-hash.ts +1 -1
  2616. package/lib/utils/helpers.test.ts +8 -1
  2617. package/lib/utils/helpers.ts +23 -1
  2618. package/lib/utils/logger.ts +1 -1
  2619. package/lib/utils/md5.ts +1 -1
  2620. package/lib/utils/ofetch.ts +1 -1
  2621. package/lib/utils/otel/metric.ts +3 -3
  2622. package/lib/utils/otel/trace.ts +16 -16
  2623. package/lib/utils/parse-date.ts +4 -4
  2624. package/lib/utils/proxy/index.ts +102 -18
  2625. package/lib/utils/proxy/multi-proxy.ts +139 -0
  2626. package/lib/utils/proxy/unify-proxy.ts +3 -1
  2627. package/lib/utils/puppeteer-utils.test.ts +8 -8
  2628. package/lib/utils/puppeteer.test.ts +138 -29
  2629. package/lib/utils/puppeteer.ts +154 -30
  2630. package/lib/utils/rand-user-agent.test.ts +2 -2
  2631. package/lib/utils/readable-social.test.ts +65 -0
  2632. package/lib/utils/readable-social.ts +15 -1
  2633. package/lib/utils/request-rewriter/fetch.ts +42 -4
  2634. package/lib/utils/timezone.ts +2 -2
  2635. package/lib/utils/wechat-mp.ts +3 -2
  2636. package/lib/views/index.tsx +4 -4
  2637. package/package.json +103 -103
  2638. package/lib/routes/apnews/api.ts +0 -77
  2639. package/lib/routes/coomer/artist.ts +0 -33
  2640. package/lib/routes/coomer/posts.ts +0 -32
  2641. package/lib/routes/coomer/utils.ts +0 -57
  2642. package/lib/routes/copernicium/index.ts +0 -75
  2643. package/lib/routes/dnaindia/category.ts +0 -0
  2644. package/lib/routes/gcores/category.ts +0 -171
  2645. package/lib/routes/gcores/collection.ts +0 -161
  2646. package/lib/routes/gcores/tag.ts +0 -158
  2647. package/lib/routes/gdufs/xwxy/xwxy-news.ts +0 -90
  2648. package/lib/routes/go/niid/idwr-dl.ts +0 -104
  2649. package/lib/routes/google/templates/description.art +0 -6
  2650. package/lib/routes/hit/jwc.ts +0 -86
  2651. package/lib/routes/jiemian/list.ts +0 -14
  2652. package/lib/routes/lovelive-anime/schedules.ts +0 -78
  2653. package/lib/routes/lovelive-anime/topics.ts +0 -164
  2654. package/lib/routes/mihoyo/templates/ys.art +0 -4
  2655. package/lib/routes/mixcloud/queries.ts +0 -2274
  2656. package/lib/routes/openai/blog.ts +0 -66
  2657. package/lib/routes/papers/index.ts +0 -136
  2658. package/lib/routes/picnob/templates/desc.art +0 -20
  2659. package/lib/routes/picuki/utils.ts +0 -24
  2660. package/lib/routes/producthunt/templates/descImg.art +0 -5
  2661. package/lib/routes/qweather/templates/3days.art +0 -22
  2662. package/lib/routes/qweather/templates/now.art +0 -16
  2663. package/lib/routes/rsshub/referer-map.ts +0 -14
  2664. package/lib/routes/tfc-taiwan/common.ts +0 -38
  2665. package/lib/routes/tfc-taiwan/topic.ts +0 -17
  2666. package/lib/routes/trending/all-trending.ts +0 -228
  2667. package/lib/routes/trending/templates/content.art +0 -25
  2668. package/lib/routes/whitehouse/briefing-room.ts +0 -79
  2669. package/lib/routes/whitehouse/ostp.ts +0 -76
  2670. package/lib/routes/xinhuanet/app.ts +0 -109
  2671. package/lib/routes/zaobao/templates/zaobao.art +0 -17
  2672. package/lib/routes/zaobao/util.ts +0 -189
  2673. package/lib/routes-deprecated/blogs/hedwig.js +0 -42
  2674. package/lib/routes-deprecated/chiphell/forum.js +0 -67
  2675. package/lib/routes-deprecated/chuapp/index.js +0 -54
  2676. package/lib/routes-deprecated/dev.to/top.js +0 -40
  2677. package/lib/routes-deprecated/jpmorganchase/research.js +0 -52
  2678. package/lib/routes-deprecated/ltaaa/index.js +0 -69
  2679. package/lib/routes-deprecated/psnine/game.js +0 -32
  2680. package/lib/routes-deprecated/psnine/index.js +0 -33
  2681. package/lib/routes-deprecated/psnine/news.js +0 -53
  2682. package/lib/routes-deprecated/psnine/node.js +0 -54
  2683. package/lib/routes-deprecated/psnine/shuzhe.js +0 -33
  2684. package/lib/routes-deprecated/psnine/trade.js +0 -39
@@ -0,0 +1,137 @@
1
+ import path from 'node:path';
2
+ import { load } from 'cheerio';
3
+ import { Route, ViewType } from '@/types';
4
+ import ofetch from '@/utils/ofetch';
5
+ import cache from '@/utils/cache';
6
+ import { art } from '@/utils/render';
7
+
8
+ const BASEURL = 'https://bestofjs.org/rankings/monthly';
9
+
10
+ export const route: Route = {
11
+ path: '/rankings/monthly',
12
+ categories: ['programming'],
13
+ example: '/bestofjs/rankings/monthly',
14
+ view: ViewType.Notifications,
15
+ features: {
16
+ requireConfig: false,
17
+ requirePuppeteer: false,
18
+ antiCrawler: false,
19
+ supportBT: false,
20
+ supportPodcast: false,
21
+ supportScihub: false,
22
+ },
23
+ radar: [
24
+ {
25
+ source: ['bestofjs.org/rankings/monthly/:year/:month'],
26
+ target: '/rankings/monthly',
27
+ },
28
+ ],
29
+ name: 'Monthly Rankings',
30
+ maintainers: ['ztkuaikuai'],
31
+ url: 'bestofjs.org/rankings/monthly',
32
+ handler: async () => {
33
+ const targetMonths = getLastSixMonths();
34
+ const allNeededMonthlyRankings = await Promise.all(
35
+ targetMonths.map((data) => {
36
+ const [year, month] = data.split('-');
37
+ return getMonthlyRankings(year, month);
38
+ })
39
+ );
40
+ const items = allNeededMonthlyRankings.flatMap((oneMonthlyRankings, i) => {
41
+ const [year, month] = targetMonths[i].split('-');
42
+ const description = art(path.join(__dirname, 'templates/description.art'), { items: oneMonthlyRankings });
43
+ return {
44
+ title: `Best of JS Monthly Rankings - ${year}/${month}`,
45
+ description,
46
+ link: `${BASEURL}/${year}/${month}`,
47
+ guid: `${BASEURL}/${year}/${month}`,
48
+ author: 'Best of JS',
49
+ };
50
+ });
51
+
52
+ return {
53
+ title: 'Best of JS Monthly Rankings',
54
+ link: BASEURL,
55
+ description: 'Monthly rankings of the most popular JavaScript projects on Best of JS',
56
+ item: items,
57
+ language: 'en',
58
+ };
59
+ },
60
+ };
61
+
62
+ const getLastSixMonths = (): string[] => {
63
+ const now = new Date();
64
+ const currentYear = now.getFullYear();
65
+ const currentMonth = now.getMonth() + 1; // 0-based to 1-based
66
+ return Array.from({ length: 6 }, (_, i) => {
67
+ let month = currentMonth - (i + 1);
68
+ let year = currentYear;
69
+ if (month <= 0) {
70
+ month += 12;
71
+ year -= 1;
72
+ }
73
+ return `${year}-${month}`;
74
+ });
75
+ };
76
+
77
+ interface RankingItem {
78
+ logo: string;
79
+ projectName: string;
80
+ githubLink: string;
81
+ homepageLink: string;
82
+ description: string;
83
+ tags: string[];
84
+ starCount: string;
85
+ additionalInfo: string;
86
+ }
87
+
88
+ const getMonthlyRankings = (year: string, month: string): Promise<RankingItem[]> => {
89
+ const targetUrl = `${BASEURL}/${year}/${month}`;
90
+ return cache.tryGet(targetUrl, async () => {
91
+ const response = await ofetch(targetUrl);
92
+ const $ = load(response);
93
+ return $('table.w-full tbody tr[data-testid="project-card"]')
94
+ .toArray()
95
+ .map((el) => {
96
+ const $tr = $(el);
97
+ // Project logo
98
+ const logo =
99
+ $tr
100
+ .find('td:first img')
101
+ .attr('src')
102
+ ?.replace(/.dark./, '.') || '';
103
+ // Project name and link
104
+ const projectLink = $tr.find('td:nth-child(2) a[href^="/projects/"]').first();
105
+ const projectName = projectLink.text().trim();
106
+ // GitHub and homepage links
107
+ const githubLink = $tr.find('td:nth-child(2) a[href*="github.com"]').attr('href') || '';
108
+ const homepageLink = $tr.find('td:nth-child(2) a[href*="http"]:not([href*="github.com"])').attr('href') || '';
109
+ // Description
110
+ const description = $tr.find('td:nth-child(2) .font-serif').text().trim();
111
+ // Tags
112
+ const tags = $tr
113
+ .find('td:nth-child(2) [href*="/projects?tags="]')
114
+ .toArray()
115
+ .map((tag) => $(tag).text().trim());
116
+ // Star count
117
+ const starCount = $tr.find('td:nth-child(4) span:last').text().trim() || $tr.find('td:nth-child(2) .inline-flex span:last-child').text().trim();
118
+ // Additional info (contributors, created date)
119
+ const additionalInfo = $tr
120
+ .find('td:nth-child(3) > div')
121
+ .toArray()
122
+ .slice(1)
123
+ .map((el) => $(el).text().trim())
124
+ .join('; ');
125
+ return {
126
+ logo,
127
+ projectName,
128
+ githubLink,
129
+ homepageLink,
130
+ description,
131
+ tags,
132
+ starCount,
133
+ additionalInfo,
134
+ };
135
+ });
136
+ });
137
+ };
@@ -0,0 +1,7 @@
1
+ import type { Namespace } from '@/types';
2
+
3
+ export const namespace: Namespace = {
4
+ name: 'Best of JS',
5
+ url: 'bestofjs.org',
6
+ lang: 'en',
7
+ };
@@ -0,0 +1,36 @@
1
+ <ul>
2
+ {{each items item index}}
3
+ <li>
4
+ <p><strong>Rank {{index + 1}}</strong></p>
5
+ {{if item.logo}}
6
+ <img src="https://bestofjs.org{{item.logo}}" alt="{{item.projectName}}" height="32" width="32" />
7
+ {{/if}}
8
+ {{if item.projectName}}
9
+ <p><strong>Project:</strong> {{item.projectName}}</p>
10
+ {{/if}}
11
+ {{if item.description}}
12
+ <p>{{item.description}}</p>
13
+ {{/if}}
14
+ {{if item.starCount}}
15
+ <p><strong>Stars:</strong> {{item.starCount}}</p>
16
+ {{/if}}
17
+ {{if item.additionalInfo}}
18
+ <p><strong>Additional Info:</strong> {{item.additionalInfo}}</p>
19
+ {{/if}}
20
+ {{if item.githubLink}}
21
+ <p><strong>GitHub:</strong> <a href="{{item.githubLink}}">{{item.githubLink}}</a></p>
22
+ {{/if}}
23
+ {{if item.homepageLink}}
24
+ <p><strong>Homepage:</strong> <a href="{{item.homepageLink}}">{{item.homepageLink}}</a></p>
25
+ {{/if}}
26
+ {{if item.tags && item.tags.length}}
27
+ <p><strong>Tags:</strong>
28
+ {{each item.tags tag tIndex}}
29
+ <a href="/projects?tags={{tag.toLowerCase()}}">{{tag}}</a>{{if tIndex < item.tags.length - 1}}, {{/if}}
30
+ {{/each}}
31
+ </p>
32
+ {{/if}}
33
+ </li>
34
+ <br />
35
+ {{/each}}
36
+ </ul>
@@ -0,0 +1,127 @@
1
+ import { Route, DataItem, Data } from '@/types';
2
+ import ofetch from '@/utils/ofetch';
3
+ import { load } from 'cheerio';
4
+ import { parseDate } from '@/utils/parse-date';
5
+ import cache from '@/utils/cache';
6
+
7
+ const ROOT_URL = 'https://bfl.ai'; // 根 URL 定义为常量
8
+
9
+ /**
10
+ * 辅助函数:获取并解析单个公告详情页,提取正文内容,并使用缓存。
11
+ */
12
+ const fetchDescription = (item: DataItem): Promise<DataItem> =>
13
+ cache.tryGet(item.link!, async () => {
14
+ const detailPageHtml = await ofetch(item.link!, {
15
+ // 不再手动指定 User-Agent,让 RSSHub 自行处理
16
+ });
17
+ const $detailPage = load(detailPageHtml);
18
+ const detailContentSelector = 'div.max-w-3xl.mx-auto.px-6';
19
+ const fullDescription = $detailPage(detailContentSelector).html()?.trim();
20
+
21
+ // 将从列表页获取的 item 与详情页的描述合并后返回
22
+ // 整个对象将被缓存
23
+ return {
24
+ ...item,
25
+ description: fullDescription || item.description, // 如果获取不到全文,则回退到列表页的摘要
26
+ };
27
+ });
28
+
29
+ /**
30
+ * 主路由处理函数
31
+ */
32
+ async function handler(): Promise<Data> {
33
+ const listPageUrl = `${ROOT_URL}/announcements`;
34
+
35
+ const listPageHtml = await ofetch(listPageUrl); // 不再手动指定 User-Agent
36
+ const $ = load(listPageHtml);
37
+
38
+ const feedTitle = $('head title').text().trim() || 'BFL AI Announcements';
39
+ const feedDescription = $('head meta[name="description"]').attr('content')?.trim() || 'Latest announcements from Black Forest Labs (bfl.ai).';
40
+
41
+ const listItemsSelector = 'div.flex.flex-col.max-w-3xl.mx-auto.space-y-8 > a[href^="/announcements/"]';
42
+ const announcementLinks = $(listItemsSelector);
43
+
44
+ // 从列表页初步提取每个条目的信息
45
+ const preliminaryItems: DataItem[] = announcementLinks
46
+ .toArray()
47
+ .map((anchorElement) => {
48
+ const $anchor = $(anchorElement);
49
+
50
+ const relativeLink = $anchor.attr('href');
51
+ const link = relativeLink ? `${ROOT_URL}${relativeLink}` : undefined;
52
+ const title = $anchor.find('h2[class*="text-xl"]').text().trim();
53
+
54
+ const $timeElement = $anchor.find('time');
55
+ const datetimeAttr = $timeElement.attr('datetime');
56
+ const timeText = $timeElement.text().trim();
57
+ const pubDate = datetimeAttr ? parseDate(datetimeAttr) : timeText ? parseDate(timeText) : undefined;
58
+
59
+ const summaryDescription = $anchor.find('p[class*="line-clamp-3"]').html()?.trim() || '';
60
+ const author = 'Black Forest Labs';
61
+
62
+ // 只有包含有效标题和链接的条目才被认为是初步有效的
63
+ if (!title || !link) {
64
+ return null;
65
+ }
66
+
67
+ // 构造初步的 item 对象
68
+ const preliminaryItem: DataItem = {
69
+ title,
70
+ link,
71
+ description: summaryDescription,
72
+ author,
73
+ };
74
+
75
+ if (pubDate) {
76
+ preliminaryItem.pubDate = pubDate.toUTCString();
77
+ }
78
+
79
+ return preliminaryItem;
80
+ })
81
+ .filter((item): item is DataItem => item !== null && item.link !== undefined);
82
+
83
+ // 并行获取所有文章的完整描述
84
+ const items: DataItem[] = await Promise.all(preliminaryItems.map((item) => fetchDescription(item)));
85
+
86
+ return {
87
+ title: feedTitle,
88
+ link: listPageUrl,
89
+ description: feedDescription,
90
+ item: items,
91
+ language: 'en',
92
+ };
93
+ }
94
+
95
+ /**
96
+ * 定义并导出RSSHub路由对象
97
+ */
98
+ export const route: Route = {
99
+ // 路径相对于命名空间 /bfl,所以完整路径是 /bfl/announcements
100
+ path: '/announcements',
101
+ // 按照要求,只指定一个分类
102
+ categories: ['multimedia'],
103
+ example: '/bfl/announcements',
104
+ parameters: {},
105
+ features: {
106
+ requireConfig: false,
107
+ requirePuppeteer: false,
108
+ antiCrawler: false,
109
+ supportBT: false,
110
+ supportPodcast: false,
111
+ supportScihub: false,
112
+ },
113
+ radar: [
114
+ {
115
+ source: ['bfl.ai/announcements'],
116
+ // target 也要相应修改
117
+ target: '/announcements',
118
+ title: 'Announcements',
119
+ },
120
+ ],
121
+ name: 'Announcements',
122
+ maintainers: ['thirteenkai'],
123
+ handler,
124
+ // url 不包含协议名
125
+ url: 'bfl.ai/announcements',
126
+ description: 'Fetches the latest announcements from Black Forest Labs (bfl.ai). Provides full article content by default with caching.',
127
+ };
@@ -0,0 +1,9 @@
1
+ import type { Namespace } from '@/types';
2
+
3
+ export const namespace: Namespace = {
4
+ name: 'BFL AI',
5
+ url: 'bfl.ai',
6
+ categories: ['multimedia'],
7
+ description: '来自黑森林实验室(bfl.ai)的公告和更新,这是一个前沿的人工智能实验室。',
8
+ lang: 'en',
9
+ };
@@ -1,6 +1,4 @@
1
1
  import { Route } from '@/types';
2
- import { getCurrentPath } from '@/utils/helpers';
3
- const __dirname = getCurrentPath(import.meta.url);
4
2
 
5
3
  import got from '@/utils/got';
6
4
  import path from 'node:path';
@@ -8,7 +8,7 @@ const md = MarkdownIt({
8
8
 
9
9
  export const route: Route = {
10
10
  path: '/collections',
11
- categories: ['finance', 'popular'],
11
+ categories: ['finance'],
12
12
  view: ViewType.Articles,
13
13
  example: '/bigquant/collections',
14
14
  parameters: {},
@@ -11,7 +11,7 @@ export const route: Route = {
11
11
  embed: '默认为开启内嵌视频, 任意值为关闭',
12
12
  },
13
13
  example: '/bilibili/bangumi/media/9192',
14
- categories: ['social-media', 'popular'],
14
+ categories: ['social-media'],
15
15
  view: ViewType.Videos,
16
16
  maintainers: ['DIYgod', 'nuomi1'],
17
17
  handler,
@@ -4,13 +4,22 @@ import utils from './utils';
4
4
  import { load } from 'cheerio';
5
5
  import { config } from '@/config';
6
6
  import logger from '@/utils/logger';
7
- import puppeteer from '@/utils/puppeteer';
7
+ import { getPuppeteerPage } from '@/utils/puppeteer';
8
8
  import { JSDOM } from 'jsdom';
9
+ import { RateLimiterMemory, RateLimiterQueue } from 'rate-limiter-flexible';
9
10
 
10
- const disableConfigCookie = false;
11
+ const subtitleLimiter = new RateLimiterMemory({
12
+ points: 5,
13
+ duration: 1,
14
+ execEvenly: true,
15
+ });
11
16
 
12
- const getCookie = () => {
13
- if (!disableConfigCookie && Object.keys(config.bilibili.cookies).length > 0) {
17
+ const subtitleLimiterQueue = new RateLimiterQueue(subtitleLimiter, {
18
+ maxQueueSize: 4800,
19
+ });
20
+
21
+ const getCookie = (disableConfig = false) => {
22
+ if (Object.keys(config.bilibili.cookies).length > 0 && !disableConfig) {
14
23
  // Update b_lsid in cookies
15
24
  for (const key of Object.keys(config.bilibili.cookies)) {
16
25
  const cookie = config.bilibili.cookies[key];
@@ -24,25 +33,26 @@ const getCookie = () => {
24
33
  }
25
34
  const key = 'bili-cookie';
26
35
  return cache.tryGet(key, async () => {
27
- const browser = await puppeteer({
28
- stealth: true,
36
+ let waitForRequest: Promise<string> = new Promise((resolve) => {
37
+ resolve('');
29
38
  });
30
- const page = await browser.newPage();
31
- const waitForRequest = new Promise<string>((resolve) => {
32
- page.on('requestfinished', async (request) => {
33
- if (request.url() === 'https://api.bilibili.com/x/internal/gaia-gateway/ExClimbWuzhi') {
34
- const cookies = await page.cookies();
35
- let cookieString = cookies.map((cookie) => `${cookie.name}=${cookie.value}`).join('; ');
36
-
37
- cookieString = cookieString.replace(/b_lsid=[0-9A-F]+_[0-9A-F]+/, `b_lsid=${utils.lsid()}`);
38
- resolve(cookieString);
39
- }
40
- });
39
+ const { destory } = await getPuppeteerPage('https://space.bilibili.com/1/dynamic', {
40
+ onBeforeLoad: (page) => {
41
+ waitForRequest = new Promise<string>((resolve) => {
42
+ page.on('requestfinished', async (request) => {
43
+ if (request.url() === 'https://api.bilibili.com/x/internal/gaia-gateway/ExClimbWuzhi') {
44
+ const cookies = await page.cookies();
45
+ let cookieString = cookies.map((cookie) => `${cookie.name}=${cookie.value}`).join('; ');
46
+ cookieString = cookieString.replace(/b_lsid=[0-9A-F]+_[0-9A-F]+/, `b_lsid=${utils.lsid()}`);
47
+ resolve(cookieString);
48
+ }
49
+ });
50
+ });
51
+ },
41
52
  });
42
- await page.goto('https://space.bilibili.com/1/dynamic');
43
53
  const cookieString = await waitForRequest;
44
54
  logger.debug(`Got bilibili cookie: ${cookieString}`);
45
- await browser.close();
55
+ await destory();
46
56
  return cookieString;
47
57
  });
48
58
  };
@@ -148,11 +158,11 @@ const getUsernameAndFaceFromUID = async (uid) => {
148
158
  if (nameResponse.data.name) {
149
159
  name = nameResponse.data.name;
150
160
  face = nameResponse.data.face;
161
+ cache.set(nameKey, nameResponse.data.name);
162
+ cache.set(faceKey, nameResponse.data.face);
151
163
  } else {
152
164
  logger.error(`Error when visiting /x/space/wbi/acc/info: ${JSON.stringify(nameResponse)}`);
153
165
  }
154
- cache.set(nameKey, name);
155
- cache.set(faceKey, face);
156
166
  }
157
167
  return [name, face];
158
168
  };
@@ -169,15 +179,15 @@ const getLiveIDFromShortID = (shortID) => {
169
179
  });
170
180
  };
171
181
 
172
- const getUsernameFromLiveID = (liveID) => {
173
- const key = `bili-username-from-liveID-${liveID}`;
182
+ const getUserInfoFromLiveID = (liveID) => {
183
+ const key = `bili-userinfo-from-liveID-${liveID}`;
174
184
  return cache.tryGet(key, async () => {
175
185
  const { data: nameResponse } = await got(`https://api.live.bilibili.com/live_user/v1/UserInfo/get_anchor_in_room?roomid=${liveID}`, {
176
186
  headers: {
177
187
  Referer: `https://live.bilibili.com/${liveID}`,
178
188
  },
179
189
  });
180
- return nameResponse.data.info.uname;
190
+ return nameResponse.data.info;
181
191
  });
182
192
  };
183
193
 
@@ -201,10 +211,91 @@ const getCidFromId = (aid, pid, bvid) => {
201
211
  const { data } = await got(`https://api.bilibili.com/x/web-interface/view?${bvid ? `bvid=${bvid}` : `aid=${aid}`}`, {
202
212
  referer: `https://www.bilibili.com/video/${bvid || `av${aid}`}`,
203
213
  });
204
- return data.data.pages[pid - 1].cid;
214
+ return data?.data?.pages[pid - 1]?.cid;
215
+ });
216
+ };
217
+
218
+ interface SubtitleEntry {
219
+ from: number;
220
+ to: number;
221
+ sid: number;
222
+ content: string;
223
+ music: number;
224
+ }
225
+
226
+ function secondsToSrtTime(seconds: number): string {
227
+ const date = new Date(seconds * 1000);
228
+ const hh = String(date.getUTCHours()).padStart(2, '0');
229
+ const mm = String(date.getUTCMinutes()).padStart(2, '0');
230
+ const ss = String(date.getUTCSeconds()).padStart(2, '0');
231
+ const ms = String(date.getUTCMilliseconds()).padStart(3, '0');
232
+ return `${hh}:${mm}:${ss},${ms}`;
233
+ }
234
+
235
+ function convertJsonToSrt(body: SubtitleEntry[]): string {
236
+ return body
237
+ .map((item, index) => {
238
+ const start = secondsToSrtTime(item.from);
239
+ const end = secondsToSrtTime(item.to);
240
+ return `${index + 1}\n${start} --> ${end}\n${item.content}\n`;
241
+ })
242
+ .join('\n');
243
+ }
244
+
245
+ const getVideoSubtitle = async (
246
+ bvid: string
247
+ ): Promise<
248
+ Array<{
249
+ content: string;
250
+ lan_doc: string;
251
+ }>
252
+ > => {
253
+ if (!bvid) {
254
+ return [];
255
+ }
256
+
257
+ const cid = await getCidFromId(undefined, 1, bvid);
258
+ if (!cid) {
259
+ return [];
260
+ }
261
+
262
+ const cookie = await getCookie();
263
+ return cache.tryGet(`bili-video-subtitle-${bvid}`, async () => {
264
+ await subtitleLimiterQueue.removeTokens(1);
265
+ const response = await got(`https://api.bilibili.com/x/player/wbi/v2?bvid=${bvid}&cid=${cid}`, {
266
+ headers: {
267
+ Referer: `https://www.bilibili.com/video/${bvid}`,
268
+ Cookie: cookie,
269
+ },
270
+ });
271
+
272
+ const subtitles = response?.data?.data?.subtitle?.subtitles || [];
273
+
274
+ return await Promise.all(
275
+ subtitles.map(async (subtitle) => {
276
+ const url = `https:${subtitle.subtitle_url}`;
277
+ const subtitleData = await cache.tryGet(url, async () => {
278
+ const subtitleResponse = await got(url);
279
+ return convertJsonToSrt(subtitleResponse?.data?.body || []);
280
+ });
281
+ return {
282
+ content: subtitleData,
283
+ lan_doc: subtitle.lan_doc,
284
+ };
285
+ })
286
+ );
205
287
  });
206
288
  };
207
289
 
290
+ const getVideoSubtitleAttachment = async (bvid: string) => {
291
+ const subtitles = await getVideoSubtitle(bvid);
292
+ return subtitles.map((subtitle) => ({
293
+ url: `data:text/plain;charset=utf-8,${encodeURIComponent(subtitle.content)}`,
294
+ mime_type: 'text/srt',
295
+ title: `字幕 - ${subtitle.lan_doc}`,
296
+ }));
297
+ };
298
+
208
299
  const getAidFromBvid = async (bvid) => {
209
300
  const key = `bili-cid-from-bvid-${bvid}`;
210
301
  let aid = await cache.get(key);
@@ -280,10 +371,12 @@ export default {
280
371
  getUsernameFromUID,
281
372
  getUsernameAndFaceFromUID,
282
373
  getLiveIDFromShortID,
283
- getUsernameFromLiveID,
374
+ getUserInfoFromLiveID,
284
375
  getVideoNameFromId,
285
376
  getCidFromId,
286
377
  getAidFromBvid,
287
378
  getArticleDataFromCvid,
288
379
  getRenderData,
380
+ getVideoSubtitle,
381
+ getVideoSubtitleAttachment,
289
382
  };
@@ -0,0 +1,31 @@
1
+ import { APIRoute } from '@/types';
2
+ import cacheIn from './cache';
3
+ import ofetch from '@/utils/ofetch';
4
+
5
+ export const apiRoute: APIRoute = {
6
+ path: '/check-cookie',
7
+ description: '检查 bilibili cookie 是否有效',
8
+ maintainers: ['DIYgod'],
9
+ handler,
10
+ };
11
+
12
+ async function handler() {
13
+ const cookie = await cacheIn.getCookie();
14
+
15
+ if (!cookie) {
16
+ return {
17
+ code: -1,
18
+ };
19
+ }
20
+
21
+ const response = await ofetch(`https://api.bilibili.com/x/web-interface/nav`, {
22
+ headers: {
23
+ Referer: `https://space.bilibili.com/1/`,
24
+ Cookie: cookie as string,
25
+ },
26
+ });
27
+
28
+ return {
29
+ code: response.code === 0 && !!response.data.mid ? 0 : -1,
30
+ };
31
+ }
@@ -2,7 +2,7 @@ import { Route } from '@/types';
2
2
  import { load } from 'cheerio';
3
3
  import cache from './cache';
4
4
  import got from '@/utils/got';
5
- import zlib from 'zlib';
5
+ import zlib from 'node:zlib';
6
6
 
7
7
  const processFloatTime = (time) => {
8
8
  const totalSeconds = Number.parseInt(time);
@@ -54,7 +54,7 @@ async function handler(ctx) {
54
54
 
55
55
  let danmakuText = danmakuResponse.body;
56
56
 
57
- danmakuText = await ((danmakuText[0] & 0x0f) === 0x08 ? zlib.inflateSync(danmakuText) : zlib.inflateRawSync(danmakuText));
57
+ danmakuText = await ((danmakuText[0] & 0x0F) === 0x08 ? zlib.inflateSync(danmakuText) : zlib.inflateRawSync(danmakuText));
58
58
 
59
59
  let danmakuList = [];
60
60
  const $ = load(danmakuText, { xmlMode: true });
@@ -62,7 +62,7 @@ async function handler(ctx) {
62
62
  danmakuList.push({ p: $(item).attr('p'), text: $(item).text() });
63
63
  });
64
64
 
65
- danmakuList = danmakuList.reverse().slice(0, limit);
65
+ danmakuList = danmakuList.toReversed().slice(0, limit);
66
66
 
67
67
  return {
68
68
  title: `${videoName} 的 弹幕动态`,