46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
export const discogsSearchFixture = {
|
|
results: [
|
|
{
|
|
id: 1001,
|
|
type: 'release',
|
|
title: 'The Cinematic Orchestra - Motion',
|
|
year: '1999',
|
|
format: ['CD', 'Album'],
|
|
label: ['Ninja Tune'],
|
|
country: 'UK',
|
|
catno: 'ZENCD012',
|
|
cover_image: 'https://img.discogs.com/big1.jpg',
|
|
thumb: 'https://img.discogs.com/small1.jpg',
|
|
},
|
|
{
|
|
id: 1002,
|
|
type: 'release',
|
|
title: 'The Cinematic Orchestra - Motion',
|
|
year: '1999',
|
|
format: ['Vinyl', '2xLP'],
|
|
label: ['Ninja Tune'],
|
|
country: 'UK',
|
|
catno: 'ZEN012',
|
|
cover_image: 'https://img.discogs.com/big2.jpg',
|
|
thumb: 'https://img.discogs.com/small2.jpg',
|
|
},
|
|
],
|
|
}
|
|
|
|
export const discogsReleaseFixture = {
|
|
id: 1001,
|
|
title: 'Motion',
|
|
artists: [{ name: 'The Cinematic Orchestra' }],
|
|
year: 1999,
|
|
formats: [{ name: 'CD', qty: '1' }],
|
|
labels: [{ name: 'Ninja Tune', catno: 'ZENCD012' }],
|
|
genres: ['Electronic', 'Jazz'],
|
|
country: 'UK',
|
|
images: [{ uri: 'https://img.discogs.com/full1.jpg' }],
|
|
tracklist: [
|
|
{ position: '1', title: 'Overture' },
|
|
{ position: '2', title: 'Theme de Yoyo' },
|
|
],
|
|
identifiers: [{ type: 'Barcode', value: '5021592210629' }],
|
|
}
|