mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
增加云贝推歌接口,云贝推歌历史记录接口 #1246
This commit is contained in:
parent
af27f1a319
commit
8e7c7c5531
@ -1,4 +1,7 @@
|
||||
# 更新日志
|
||||
### 4.0.14 | 2021.5.28
|
||||
- 增加云贝推歌接口,云贝推歌历史记录接口 [#1246](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1246)
|
||||
|
||||
### 4.0.13 | 2021.5.24
|
||||
- 修复解析问题,改善 Docker 支持 [#1241](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1241)
|
||||
### 4.0.12 | 2021.5.1
|
||||
|
@ -318,6 +318,8 @@ banner({ type:0 }).then(res=>{
|
||||
204. 一起听状态
|
||||
205. 用户历史评论
|
||||
206. 云盘歌曲信息匹配纠正
|
||||
207. 云贝推歌
|
||||
208. 云贝推歌历史记录
|
||||
|
||||
## 更新日志
|
||||
|
||||
|
@ -222,6 +222,8 @@
|
||||
204. 一起听状态
|
||||
205. 用户历史评论
|
||||
206. 云盘歌曲信息匹配纠正
|
||||
207. 云贝推歌
|
||||
208. 云贝推歌历史记录
|
||||
|
||||
## 安装
|
||||
|
||||
|
15
interface.d.ts
vendored
15
interface.d.ts
vendored
@ -1428,3 +1428,18 @@ export function cloud_match(
|
||||
asid: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
|
||||
export function yunbei_rcmd_song(
|
||||
params: {
|
||||
id: number | string
|
||||
reason?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_rcmd_song_history(
|
||||
params: {
|
||||
size?: number | string
|
||||
cursor?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "NeteaseCloudMusicApi",
|
||||
"version": "4.0.12",
|
||||
"version": "4.0.14",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "4.0.12",
|
||||
"version": "4.0.14",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "NeteaseCloudMusicApi",
|
||||
"version": "4.0.13",
|
||||
"version": "4.0.14",
|
||||
"description": "网易云音乐 NodeJS 版 API",
|
||||
"scripts": {
|
||||
"start": "node app.js",
|
||||
|
Loading…
x
Reference in New Issue
Block a user