feat: updates

This commit is contained in:
qier222 2023-01-24 16:29:33 +08:00
parent c6c59b2cd9
commit 7ce516877e
No known key found for this signature in database
63 changed files with 6591 additions and 1107 deletions

View file

@ -0,0 +1,32 @@
interface FetchAppleMusicAlbumParams {
neteaseId: number | string
}
interface FetchAppleMusicAlbumResponse {
id: number
neteaseId: number
name: string
artistName: string
editorialVideo: string
artwork: string
editorialNote: {
en_US: string
zh_CN: string
}
}
interface FetchAppleMusicArtistParams {
neteaseId: number | string
}
interface FetchAppleMusicArtistResponse {
id: number
neteaseId: number
editorialVideo: string
artwork: string
name: string
artistBio: {
en_US: string
zh_CN: string
}
}

View file

@ -20,7 +20,7 @@ export interface FetchTracksResponse {
export interface FetchAudioSourceParams {
id: number
br?: number // bitrate, default 999000320000 = 320kbps
level?: 'standard' | 'higher' | 'exhigh' | 'lossless' | 'hires' // 128kbps 192kbps 320kbps Lossless Hi-Res
}
export interface FetchAudioSourceResponse {
code: number