mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-06 23:42:07 +08:00
修复代理配置失效的问题 #992,修复新碟上架不返回周数据的问题,修复推荐新音乐接口返回数量问题,并添加limit参数支持 #981, 添加云贝
相关接口 #985,添加用户账号信息
接口,替换接口文件所有http url 为 https
This commit is contained in:
37
interface.d.ts
vendored
37
interface.d.ts
vendored
@ -802,7 +802,10 @@ export function personalized_djprogram(
|
||||
export function personalized_mv(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function personalized_newsong(
|
||||
params: RequestBaseConfig,
|
||||
params: {
|
||||
area?: string | number
|
||||
limit?: string | number
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function personalized_privatecontent(
|
||||
@ -1269,3 +1272,35 @@ export function dj_subscriber(
|
||||
time?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function user_account(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_info(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_sign(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_receipt(
|
||||
params: {
|
||||
limit?: number | string
|
||||
offset?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_expense(
|
||||
params: {
|
||||
limit?: number | string
|
||||
offset?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_tasks(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_today(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_tasks_todo(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function yunbei_task_finish(
|
||||
params: { userTaskId?: number | string } & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
Reference in New Issue
Block a user