mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 13:39:41 +00:00
feat: add UI for editing series Audible ASIN
- Create AsinInput.vue component for ASIN input with URL extraction - Update EditSeriesInputInnerModal to include ASIN field - Update SeriesInputWidget to fetch and save ASIN data - Add SeriesController PATCH endpoint for updating ASIN - Add localization strings for ASIN-related messages The AsinInput component automatically extracts ASINs from pasted Audible URLs and provides validation feedback.
This commit is contained in:
parent
40606eb1af
commit
b8b3a20498
9 changed files with 322 additions and 16 deletions
|
|
@ -14,6 +14,12 @@ components:
|
|||
type: string
|
||||
nullable: true
|
||||
example: The Sword of Truth is a series of twenty one epic fantasy novels written by Terry Goodkind.
|
||||
audibleSeriesAsin:
|
||||
description: The Audible ASIN (Amazon Standard Identification Number) for this series. Used for metadata lookups. Will be null if not set.
|
||||
type: string
|
||||
nullable: true
|
||||
pattern: '^[A-Z0-9]{10}$'
|
||||
example: B08G9PRS1K
|
||||
sequence:
|
||||
description: The position in the series the book is.
|
||||
type: string
|
||||
|
|
@ -45,6 +51,8 @@ components:
|
|||
$ref: '#/components/schemas/seriesName'
|
||||
description:
|
||||
$ref: '#/components/schemas/seriesDescription'
|
||||
audibleSeriesAsin:
|
||||
$ref: '#/components/schemas/audibleSeriesAsin'
|
||||
addedAt:
|
||||
$ref: '../../schemas.yaml#/components/schemas/addedAt'
|
||||
updatedAt:
|
||||
|
|
@ -73,6 +81,10 @@ components:
|
|||
$ref: '#/components/schemas/seriesId'
|
||||
name:
|
||||
$ref: '#/components/schemas/seriesName'
|
||||
description:
|
||||
$ref: '#/components/schemas/seriesDescription'
|
||||
audibleSeriesAsin:
|
||||
$ref: '#/components/schemas/audibleSeriesAsin'
|
||||
addedAt:
|
||||
$ref: '../../schemas.yaml#/components/schemas/addedAt'
|
||||
nameIgnorePrefix:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue