Sample State - emrebaran7/independent_camp GitHub Wiki

entities: {
    albums: {
        1: {
            id: 1,
            title: <....>,
            description: <....>,
            releaseDate: <....>,
            artistID: <....>,
            trackIds: <....>,
            genreIDs: <....>,
            credits: <....>,
        },
        2: {
            id: 2,
            title: <....>,
            description: <....>,
            releaseDate: <....>,
            artistID: <....>,
            trackIds: <....>,
            genreIDs: <....>,
            credits: <....>,
        },
        3: {
            id: 3,
            title: <....>,
            description: <....>,
            releaseDate: <....>,
            artistID: <....>,
            trackIds: <....>,
            genreIDs: <....>,
            credits: <....>,
        },
    tracks: {
        15: {
            id: 15,
            artistID: <....>,
            albumId: <....>,
            title: <....>,
            ord: <....>,            
            genreIDs: [...],
            credits: <....>,
        },
        25: {
            id: 25,
            artistID: <....>,
            albumId: <....>,
            title: <....>,
            ord: <....>,            
            genreIDs: [...],
            credits: <....>,
        },
        60: {
            id: 60,
            artistID: <....>,
            albumId: <....>,
            title: <....>,
            ord: <....>,            
            genreIDs: [...],
            credits: <....>,
        }     
    genres: {
        2: {
            id: 2,
            tag: <....>,
            track_ids: [...],
            album_ids: [...],
        },
        5: {
            id: 5,
            tag: <....>,
            track_ids: [...],
            album_ids: [...],
        },
        6: {
            id: 6,
            tag: <....>,
            track_ids: [...],
            album_ids: [...],
        },                
    }
    users: {
        4, {
            id: 4,
            username: <...>,
            artist?: <...>,
            albumIDs: [...],
            trackIDs: [...]
        },
        7, {
            id: 7,
            username: <...>,
            artist?: <...>,
            albumIDs: [...],
            trackIDs: [...]
        },
        9, {
            id: 9,
            username: <...>,
            artist?: <...>,
            albumIDs: [...],
            trackIDs: [...]
        }
    }
    ui: {},
    errors: {
        login: ["Invalid credentials"]
    },
    session: { 
        current_user_id: 2, 
    }
}
⚠️ **GitHub.com Fallback** ⚠️