新增精品歌单标签列表接口 #921, 新增用户等级信息接口 #929,增加新接口的 d.ts 文件,修复登录接口的 d.ts 的 countrycode 为非可选属性的错误

This commit is contained in:
binaryify
2020-09-19 18:43:52 +08:00
parent cb4c07f421
commit 50a1cb367b
13 changed files with 77 additions and 6 deletions

11
module/user_level.js Normal file
View File

@ -0,0 +1,11 @@
// 类别热门电台
module.exports = (query, request) => {
const data = {}
return request('POST', `https://music.163.com/weapi/user/level`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
})
}