spotify-web-api-ts-edge
Advanced tools
Comparing version 0.9.6 to 0.9.7
{ | ||
"name": "spotify-web-api-ts-edge", | ||
"version": "0.9.6", | ||
"version": "0.9.7", | ||
"description": "An isomorphic TypeScript wrapper for Spotify's Web API that can run on the edge", | ||
@@ -5,0 +5,0 @@ "main": "cjs/index.js", |
@@ -30,3 +30,5 @@ export type Action = 'interrupting_playback' | 'pausing' | 'resuming' | 'seeking' | 'skipping_next' | 'skipping_prev' | 'toggling_repeat_context' | 'toggling_shuffle' | 'toggling_repeat_track' | 'transferring_playback'; | ||
id: string; | ||
images: SpotifyImage[]; | ||
images: SpotifyImage[] & { | ||
base64?: string | undefined; | ||
}; | ||
name: string; | ||
@@ -324,3 +326,5 @@ popularity: number; | ||
id: string; | ||
images: SpotifyImage[]; | ||
images: SpotifyImage[] & { | ||
base64?: string | undefined; | ||
}; | ||
name: string; | ||
@@ -418,3 +422,2 @@ release_date: string; | ||
width: number | null; | ||
base64?: string | undefined; | ||
}; | ||
@@ -421,0 +424,0 @@ export type TimeInterval = { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
303749
2988