-
Notifications
You must be signed in to change notification settings - Fork 7
/
interfaces-supplementary.ts
230 lines (192 loc) · 4.07 KB
/
interfaces-supplementary.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
* Defines the details for an album.
*/
export interface IAlbumDetail {
/**
* The ID of the album.
*/
id?: string;
/**
* The name of the album.
*/
name?: string;
/**
* The description of the album.
*/
description?: string;
/**
* The count of tracks within the album.
*/
count?: number;
/**
* The duration of the album in milliseconds.
*/
durationMillis?: number;
/**
* The artist(s) that composed the album.
*/
artists?: IArtistSummary[];
/**
* The day the album was released.
*/
releaseDay?: number;
/**
* The month the album was released.
*/
releaseMonth?: number;
/**
* The year the album was released.
*/
releaseYear?: number;
/**
* The array of tracks within the album.
*/
tracks: ITrackDetail[];
}
/**
* Defines an album summary.
*/
export interface IAlbumSummary {
/**
* The ID of the album.
*/
id?: string;
/**
* The name of the album.
*/
name?: string;
/**
* The artist that composed the album.
*/
artist?: IArtistSummary;
/**
* The year the album was released.
*/
year?: string;
}
/**
* Defines an artist summary.
*/
export interface IArtistSummary {
/**
* The ID of the artist.
*/
id?: string;
/**
* The name of the artist.
*/
name?: string;
}
/**
* Defines the details for a playlist.
*/
export interface IPlaylistDetail {
/**
* The ID of the playlist.
*/
id?: string;
/**
* The name of the playlist.
*/
name?: string;
/**
* The description of the playlist.
*/
description?: string;
/**
* The count of tracks within the playlist.
*/
count?: number;
/**
* The privacy level of the playlist. This value will be PUBLIC, PRIVATE, or UNLISTED.
*/
privacy?: string;
/**
* The array of tracks within the playlist.
*/
tracks?: ITrackDetail[];
}
/**
* Defines a playlist summary.
*/
export interface IPlaylistSummary {
/**
* The ID of the playlist.
*/
id?: string;
/**
* The name of the playlist.
*/
name?: string;
/**
* The count of tracks within the playlist.
*/
count?: number;
/**
* The thumbnails for the playlist (ordered from smallest to largest).
*/
thumbnails?: IThumbnail[];
}
/**
* Defines the details for a track.
*/
export interface ITrackDetail {
/**
* The ID of the track.
*/
id?: string;
/**
* An alternate ID of the track. YouTube internally refers to this value as the setVideoId. This ID
* is used in combination with the standard ID in order to remove tracks from playlists.
*/
alternateId?: string;
/**
* The title of the track.
*/
title?: string;
/**
* The artist(s) that compose the track.
*/
artists?: IArtistSummary[];
/**
* The album the track is from.
*/
album?: IAlbumSummary;
/**
* The duration of the track as a readable string.
*/
duration?: string;
/**
* The duration of the track in milliseconds.
*/
durationMillis?: number;
/**
* The track number within an album.
*/
trackNumber?: number;
/**
* The thumbnails for the track (ordered from smallest to largest).
*/
thumbnails?: IThumbnail[];
/**
* The rating for the track (LIKE, DISLIKE, or INDIFFERENT).
*/
likeStatus?: "LIKE"|"DISLIKE"|"INDIFFERENT";
}
/**
* Defines the details for a thumbnail.
*/
export interface IThumbnail {
/**
* The URL for the thumbnail.
*/
url?: string,
/**
* The width of the thumbnail.
*/
width?: number,
/**
* The height of the thumbnail.
*/
height?: number,
}