feat: add spotify oauth2 provider

This commit is contained in:
Alexander Staroselsky 2022-01-12 08:25:57 -07:00
parent fa71a36545
commit f5e30969ef

View File

@ -10,6 +10,17 @@ export interface SpotifyProfile {
images: SpotifyProfileImage[];
type: string;
uri: string;
// This field is only available when the current user has granted access to the user-read-private scope.
explicit_content?: SpotifyExplicitContent;
// This field is only available when the current user has granted access to the user-read-private scope.
product?: string;
// This field is only available when the current user has granted access to the user-read-private scope.
country?: string;
}
export interface SpotifyExplicitContent {
filter_enabled: boolean;
filter_locked: boolean;
}
export interface SpotifyProfileImage {