mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 10:47:02 +00:00
chore(api): update dependencies
This commit is contained in:
parent
05f230a7ce
commit
d881a78757
37 changed files with 4804 additions and 2700 deletions
|
|
@ -22,7 +22,7 @@ export class MusicLibraryService {
|
|||
|
||||
async findArtist(query: FindArtistDto): Promise<Artist | undefined> {
|
||||
return this.artistRepository.findOne({
|
||||
where: { spotify: { id: query.spotify.id } }
|
||||
where: { spotify: { id: query.spotify.id } },
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ export class MusicLibraryService {
|
|||
|
||||
async findAlbum(query: FindAlbumDto): Promise<Album | undefined> {
|
||||
return this.albumRepository.findOne({
|
||||
where: { spotify: { id: query.spotify.id } }
|
||||
where: { spotify: { id: query.spotify.id } },
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -59,7 +59,7 @@ export class MusicLibraryService {
|
|||
|
||||
async findTrack(query: FindTrackDto): Promise<Track | undefined> {
|
||||
return this.trackRepository.findOne({
|
||||
where: { spotify: { id: query.spotify.id } }
|
||||
where: { spotify: { id: query.spotify.id } },
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue