增加云贝推歌接口,云贝推歌历史记录接口 #1246

This commit is contained in:
binaryify 2021-05-28 09:45:27 +08:00
parent af27f1a319
commit 8e7c7c5531
6 changed files with 25 additions and 3 deletions

View File

@ -1,4 +1,7 @@
# 更新日志 # 更新日志
### 4.0.14 | 2021.5.28
- 增加云贝推歌接口,云贝推歌历史记录接口 [#1246](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1246)
### 4.0.13 | 2021.5.24 ### 4.0.13 | 2021.5.24
- 修复解析问题,改善 Docker 支持 [#1241](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1241) - 修复解析问题,改善 Docker 支持 [#1241](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1241)
### 4.0.12 | 2021.5.1 ### 4.0.12 | 2021.5.1

View File

@ -318,6 +318,8 @@ banner({ type:0 }).then(res=>{
204. 一起听状态 204. 一起听状态
205. 用户历史评论 205. 用户历史评论
206. 云盘歌曲信息匹配纠正 206. 云盘歌曲信息匹配纠正
207. 云贝推歌
208. 云贝推歌历史记录
## 更新日志 ## 更新日志

View File

@ -222,6 +222,8 @@
204. 一起听状态 204. 一起听状态
205. 用户历史评论 205. 用户历史评论
206. 云盘歌曲信息匹配纠正 206. 云盘歌曲信息匹配纠正
207. 云贝推歌
208. 云贝推歌历史记录
## 安装 ## 安装

15
interface.d.ts vendored
View File

@ -1428,3 +1428,18 @@ export function cloud_match(
asid: number | string asid: number | string
} & RequestBaseConfig, } & RequestBaseConfig,
): Promise<Response> ): 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
View File

@ -1,11 +1,11 @@
{ {
"name": "NeteaseCloudMusicApi", "name": "NeteaseCloudMusicApi",
"version": "4.0.12", "version": "4.0.14",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"version": "4.0.12", "version": "4.0.14",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^0.21.1", "axios": "^0.21.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "NeteaseCloudMusicApi", "name": "NeteaseCloudMusicApi",
"version": "4.0.13", "version": "4.0.14",
"description": "网易云音乐 NodeJS 版 API", "description": "网易云音乐 NodeJS 版 API",
"scripts": { "scripts": {
"start": "node app.js", "start": "node app.js",