-
Notifications
You must be signed in to change notification settings - Fork 4
/
searchAlbums.ts
56 lines (56 loc) · 1.65 KB
/
searchAlbums.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
export type SpotifySearchAlbums = {
data: {
searchV2: {
query: string
albums: {
totalCount: number
items: Array<{
data: {
__typename: string
uri: string
name: string
artists: {
items: Array<{
uri: string
profile: {
name: string
}
}>
}
coverArt: {
sources: Array<{
url: string
width: number
height: number
}>
extractedColors: {
colorDark: {
hex: string
isFallback: boolean
}
}
}
date: {
year: number
}
}
}>
pagingInfo: {
nextOffset: number
limit: number
}
}
}
}
extensions: {
requestIds: {
"/searchV2": {
"search-api": string
}
}
cacheControl: {
version: number
hints: Array<any>
}
}
}