mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
This commit is contained in:
@@ -80,6 +80,7 @@ export interface SyncStateDto {
|
||||
serverLastScanIso?: string | null;
|
||||
indexesLastModifiedMs?: number | null;
|
||||
artistsLastModifiedMs?: number | null;
|
||||
ignoredArticles?: string | null;
|
||||
localTrackCount?: number | null;
|
||||
serverTrackCount?: number | null;
|
||||
lastError?: string | null;
|
||||
@@ -237,6 +238,7 @@ export interface LibraryArtistDto {
|
||||
serverId: string;
|
||||
id: string;
|
||||
name: string;
|
||||
nameSort?: string | null;
|
||||
albumCount?: number | null;
|
||||
syncedAt: number;
|
||||
rawJson: unknown;
|
||||
|
||||
@@ -161,6 +161,8 @@ export interface SubsonicNowPlaying extends SubsonicSong {
|
||||
export interface SubsonicArtist {
|
||||
id: string;
|
||||
name: string;
|
||||
/** Article-stripped lowercase sort key (local index / OpenSubsonic). */
|
||||
nameSort?: string;
|
||||
albumCount?: number;
|
||||
coverArt?: string;
|
||||
starred?: string;
|
||||
|
||||
Reference in New Issue
Block a user