Support language/format/publisher for Audible

Expose language, formatType, and publisherName from the Audible catalog. Update audible.service to map format_type and publisher_name (and language) into the AudibleAudiobook model, update AudiobookDetailsModal to display language and format using the CSS "capitalize" class, and update documentation to list the new fields. Add unit tests to verify the mappings, details propagation, and behavior when fields are omitted.
This commit is contained in:
kikootwo
2026-05-14 15:33:30 -04:00
parent 18752dd02b
commit 6c8ca9647d
5 changed files with 60 additions and 3 deletions
+3
View File
@@ -250,6 +250,9 @@ interface AudibleAudiobook {
series?: string;
seriesPart?: string;
seriesAsin?: string;
language?: string;
formatType?: string;
publisherName?: string;
}
interface EnrichedAudibleAudiobook extends AudibleAudiobook {