chore(bruno): add multi-library dev setup with scan-all and folder requests

Update NewDevDBSetup collection to create Ebook, Comic, and Manga
libraries with separate IDs (ebook_library_id, comic_library_id,
manga_library_id) instead of a single library_id.

- Fix CreateComicLibrary and CreateMangaLibrary to use correct
  names, descriptions, and types instead of duplicating Ebook values
- Update NewDB.sh to run the full setup sequence: register user,
  create all three libraries, add folders, then scan all
- Add AddEbookLibraryFolder, AddComicLibraryFolder, and
  AddMangaLibraryFolder requests with per-type subfolder paths
- Add ScanAllLibraries request using bru.sendRequest() to scan
  each library sequentially via the /api/scanner/scan endpoint
- Update Get Libraries (Admin) to save all three library IDs
- Update List Media Items requests to use ebook_library_id
- Rename library_id to ebook_library_id in Create Library and
  Add Library Folder requests
- Add comic_library_id and manga_library_id to environment
This commit is contained in:
2026-04-19 18:08:39 -04:00
parent afeb3f5b45
commit 58a30b6561
14 changed files with 260 additions and 98 deletions
+14 -1
View File
@@ -5,10 +5,23 @@ info:
http:
method: GET
url: "{{base_url}}/api/media-items?library_id={{library_id}}&sort=title+ASC&limit=10&offset=0"
url: "{{base_url}}/api/media-items?library_id={{ebook_library_id}}&sort=title+ASC&limit=10&offset=0"
headers:
- name: ""
value: application/json
params:
- name: library_id
value: "{{ebook_library_id}}"
type: query
- name: sort
value: title+ASC
type: query
- name: limit
value: "10"
type: query
- name: offset
value: "0"
type: query
auth: inherit
settings:
+11 -1
View File
@@ -5,10 +5,20 @@ info:
http:
method: GET
url: "{{base_url}}/api/media-items?library_id={{library_id}}&limit=20&offset=0"
url: "{{base_url}}/api/media-items?library_id={{ebook_library_id}}&limit=20&offset=0"
headers:
- name: ""
value: application/json
params:
- name: library_id
value: "{{ebook_library_id}}"
type: query
- name: limit
value: "20"
type: query
- name: offset
value: "0"
type: query
auth: inherit
settings: