diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 671d90b17d3..9e7af87cd0c 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -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 diff --git a/README.MD b/README.MD index f5aafc98ccc..bb6107c99d9 100644 --- a/README.MD +++ b/README.MD @@ -318,6 +318,8 @@ banner({ type:0 }).then(res=>{ 204. 一起听状态 205. 用户历史评论 206. 云盘歌曲信息匹配纠正 +207. 云贝推歌 +208. 云贝推歌历史记录 ## 更新日志 diff --git a/docs/README.md b/docs/README.md index c30ff9e9560..e2a486512ab 100644 --- a/docs/README.md +++ b/docs/README.md @@ -222,6 +222,8 @@ 204. 一起听状态 205. 用户历史评论 206. 云盘歌曲信息匹配纠正 +207. 云贝推歌 +208. 云贝推歌历史记录 ## 安装 diff --git a/interface.d.ts b/interface.d.ts index 9b134e29e20..8fe8db0ac4d 100644 --- a/interface.d.ts +++ b/interface.d.ts @@ -1428,3 +1428,18 @@ export function cloud_match( asid: number | string } & RequestBaseConfig, ): Promise + + +export function yunbei_rcmd_song( + params: { + id: number | string + reason?: number | string + } & RequestBaseConfig, +): Promise + +export function yunbei_rcmd_song_history( + params: { + size?: number | string + cursor?: number | string + } & RequestBaseConfig, +): Promise diff --git a/package-lock.json b/package-lock.json index c6a664c03b2..1270f20b42f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", diff --git a/package.json b/package.json index e0e21bcc7c4..6f61ec4ec55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "NeteaseCloudMusicApi", - "version": "4.0.13", + "version": "4.0.14", "description": "网易云音乐 NodeJS 版 API", "scripts": { "start": "node app.js",