feat: updates

This commit is contained in:
qier222 2023-03-26 02:16:01 +08:00
parent ce757215a3
commit c1cd31840e
No known key found for this signature in database
86 changed files with 1048 additions and 778 deletions

View file

@ -6,6 +6,8 @@ export enum UserApiNames {
FetchUserArtists = 'fetchUserArtists',
FetchListenedRecords = 'fetchListenedRecords',
FetchUserVideos = 'fetchUserVideos',
RefreshCookie = 'refreshCookie',
DailyCheckIn = 'dailyCheckIn',
}
// 获取账号详情
@ -130,3 +132,15 @@ export interface FetchListenedRecordsResponse {
song: Track
}[]
}
// 刷新Cookie
export interface RefreshCookieResponse {
code: number
cookie: string
}
// 每日签到
export interface DailyCheckInResponse {
code: number
point: number
}