import { Priority } from 'src/data/globalTypes';
import type { SongMetadata } from 'src/data/queries/nrSoundRecordingById/types';

export const testNrSoundRec: SongMetadata = {
    countryOfLabel: {
        territoryCodeA2: 'DE',
        countryName: 'Germany',
    },
    countryOfMaster: {
        territoryCodeA2: 'UK',
        countryName: 'United Kingdom',
    },
    countriesOfRecording: [
        {
            territoryCodeA2: 'JP',
            countryName: 'Japan',
        },
    ],
    duration: 0,
    featuredArtists: [],
    firstReleaseYear: null,
    id: '1235-abcde',
    isrc: 'ABC12345',
    mainArtist: 'James Blake',
    primaryArtists: [
        {
            id: '1234-abcde',
            name: 'artist a',
        },
    ],
    originalLabel: 'label a',
    priority: Priority.HIGH,
    recordingType: 'Album',
    recordingTitle: 'Retrograde',
    recordingYear: null,
    totalFeaturedPerformers: null,
    version: '',
    albumName: 'Foo bar',
    catalogNumber: null,
    contributions: [],
};
