├── .dockerignore ├── .github └── workflows │ ├── conventional-commits.yml │ ├── deploy-caprover.yml │ ├── docker-publish.yml │ ├── jest-coverage.yml │ ├── node.js.yml │ └── release-please.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── docs ├── CNAME ├── index.html └── spec │ └── audnexus.yaml ├── eslint.config.mjs ├── jest.config.ts ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── config │ ├── context.ts │ ├── models │ │ ├── Author.ts │ │ ├── Book.ts │ │ └── Chapter.ts │ ├── papr.ts │ ├── routes │ │ ├── authors │ │ │ ├── delete.ts │ │ │ ├── search │ │ │ │ └── show.ts │ │ │ └── show.ts │ │ └── books │ │ │ ├── chapters │ │ │ ├── delete.ts │ │ │ └── show.ts │ │ │ ├── delete.ts │ │ │ └── show.ts │ ├── types.ts │ └── typing │ │ ├── checkers.ts │ │ ├── papr.ts │ │ └── requests.ts ├── helpers │ ├── authors │ │ └── audible │ │ │ ├── ScrapeHelper.ts │ │ │ └── SeedHelper.ts │ ├── books │ │ └── audible │ │ │ ├── ApiHelper.ts │ │ │ ├── ChapterHelper.ts │ │ │ ├── ScrapeHelper.ts │ │ │ └── StitchHelper.ts │ ├── database │ │ ├── papr │ │ │ └── audible │ │ │ │ ├── PaprAudibleAuthorHelper.ts │ │ │ │ ├── PaprAudibleBookHelper.ts │ │ │ │ └── PaprAudibleChapterHelper.ts │ │ └── redis │ │ │ └── RedisHelper.ts │ ├── routes │ │ ├── AuthorDeleteHelper.ts │ │ ├── AuthorShowHelper.ts │ │ ├── BookDeleteHelper.ts │ │ ├── BookShowHelper.ts │ │ ├── ChapterDeleteHelper.ts │ │ ├── ChapterShowHelper.ts │ │ ├── GenericShowHelper.ts │ │ └── RouteCommonHelper.ts │ └── utils │ │ ├── UpdateScheduler.ts │ │ ├── cleanupDescription.ts │ │ ├── fetchPlus.ts │ │ ├── getErrorMessage.ts │ │ └── shared.ts ├── server.ts └── static │ ├── messages.ts │ └── regions.ts ├── tests ├── audible │ ├── authors │ │ └── scrape.test.ts │ └── books │ │ ├── api.test.ts │ │ ├── chapter.test.ts │ │ ├── scrape.test.ts │ │ └── stitch.test.ts ├── database │ ├── papr │ │ ├── audible │ │ │ ├── PaprAudibleAuthorHelper.test.ts │ │ │ ├── PaprAudibleBookHelper.test.ts │ │ │ └── PaprAudibleChapterHelper.test.ts │ │ └── initialize.test.ts │ └── redis │ │ └── RedisHelper.test.ts ├── datasets │ ├── audible │ │ ├── authors │ │ │ └── scrape.ts │ │ └── books │ │ │ ├── api.ts │ │ │ ├── chapter.ts │ │ │ ├── scrape.ts │ │ │ └── stitch.ts │ └── helpers │ │ ├── authors.ts │ │ ├── books.ts │ │ └── chapters.ts ├── helpers │ ├── authors │ │ └── audible │ │ │ ├── ScrapeHelper.test.ts │ │ │ └── SeedHelper.test.ts │ ├── books │ │ └── audible │ │ │ ├── ApiHelper.test.ts │ │ │ ├── ChapterHelper.test.ts │ │ │ ├── ScrapeHelper.test.ts │ │ │ └── StitchHelper.test.ts │ ├── routes │ │ ├── AuthorShowHelper.test.ts │ │ ├── BookShowHelper.test.ts │ │ ├── ChapterShowHelper.test.ts │ │ └── RouteCommonHelper.test.ts │ └── utils │ │ ├── UpdateScheduler.test.ts │ │ ├── cleanupDescription.test.ts │ │ ├── fetchPlus.test.ts │ │ └── shared.test.ts ├── static │ └── messages.test.ts ├── tsconfig.json └── typing │ ├── checkers.test.ts │ └── types.test.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-caprover.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/deploy-caprover.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/jest-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/jest-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | audnex.us -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/spec/audnexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/docs/spec/audnexus.yaml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/renovate.json -------------------------------------------------------------------------------- /src/config/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/context.ts -------------------------------------------------------------------------------- /src/config/models/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/models/Author.ts -------------------------------------------------------------------------------- /src/config/models/Book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/models/Book.ts -------------------------------------------------------------------------------- /src/config/models/Chapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/models/Chapter.ts -------------------------------------------------------------------------------- /src/config/papr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/papr.ts -------------------------------------------------------------------------------- /src/config/routes/authors/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/authors/delete.ts -------------------------------------------------------------------------------- /src/config/routes/authors/search/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/authors/search/show.ts -------------------------------------------------------------------------------- /src/config/routes/authors/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/authors/show.ts -------------------------------------------------------------------------------- /src/config/routes/books/chapters/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/books/chapters/delete.ts -------------------------------------------------------------------------------- /src/config/routes/books/chapters/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/books/chapters/show.ts -------------------------------------------------------------------------------- /src/config/routes/books/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/books/delete.ts -------------------------------------------------------------------------------- /src/config/routes/books/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/routes/books/show.ts -------------------------------------------------------------------------------- /src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/types.ts -------------------------------------------------------------------------------- /src/config/typing/checkers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/typing/checkers.ts -------------------------------------------------------------------------------- /src/config/typing/papr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/typing/papr.ts -------------------------------------------------------------------------------- /src/config/typing/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/config/typing/requests.ts -------------------------------------------------------------------------------- /src/helpers/authors/audible/ScrapeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/authors/audible/ScrapeHelper.ts -------------------------------------------------------------------------------- /src/helpers/authors/audible/SeedHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/authors/audible/SeedHelper.ts -------------------------------------------------------------------------------- /src/helpers/books/audible/ApiHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/books/audible/ApiHelper.ts -------------------------------------------------------------------------------- /src/helpers/books/audible/ChapterHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/books/audible/ChapterHelper.ts -------------------------------------------------------------------------------- /src/helpers/books/audible/ScrapeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/books/audible/ScrapeHelper.ts -------------------------------------------------------------------------------- /src/helpers/books/audible/StitchHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/books/audible/StitchHelper.ts -------------------------------------------------------------------------------- /src/helpers/database/papr/audible/PaprAudibleAuthorHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/database/papr/audible/PaprAudibleAuthorHelper.ts -------------------------------------------------------------------------------- /src/helpers/database/papr/audible/PaprAudibleBookHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/database/papr/audible/PaprAudibleBookHelper.ts -------------------------------------------------------------------------------- /src/helpers/database/papr/audible/PaprAudibleChapterHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/database/papr/audible/PaprAudibleChapterHelper.ts -------------------------------------------------------------------------------- /src/helpers/database/redis/RedisHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/database/redis/RedisHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/AuthorDeleteHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/AuthorDeleteHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/AuthorShowHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/AuthorShowHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/BookDeleteHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/BookDeleteHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/BookShowHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/BookShowHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/ChapterDeleteHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/ChapterDeleteHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/ChapterShowHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/ChapterShowHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/GenericShowHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/GenericShowHelper.ts -------------------------------------------------------------------------------- /src/helpers/routes/RouteCommonHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/routes/RouteCommonHelper.ts -------------------------------------------------------------------------------- /src/helpers/utils/UpdateScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/utils/UpdateScheduler.ts -------------------------------------------------------------------------------- /src/helpers/utils/cleanupDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/utils/cleanupDescription.ts -------------------------------------------------------------------------------- /src/helpers/utils/fetchPlus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/utils/fetchPlus.ts -------------------------------------------------------------------------------- /src/helpers/utils/getErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/utils/getErrorMessage.ts -------------------------------------------------------------------------------- /src/helpers/utils/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/helpers/utils/shared.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/static/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/static/messages.ts -------------------------------------------------------------------------------- /src/static/regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/src/static/regions.ts -------------------------------------------------------------------------------- /tests/audible/authors/scrape.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/audible/authors/scrape.test.ts -------------------------------------------------------------------------------- /tests/audible/books/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/audible/books/api.test.ts -------------------------------------------------------------------------------- /tests/audible/books/chapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/audible/books/chapter.test.ts -------------------------------------------------------------------------------- /tests/audible/books/scrape.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/audible/books/scrape.test.ts -------------------------------------------------------------------------------- /tests/audible/books/stitch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/audible/books/stitch.test.ts -------------------------------------------------------------------------------- /tests/database/papr/audible/PaprAudibleAuthorHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/database/papr/audible/PaprAudibleAuthorHelper.test.ts -------------------------------------------------------------------------------- /tests/database/papr/audible/PaprAudibleBookHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/database/papr/audible/PaprAudibleBookHelper.test.ts -------------------------------------------------------------------------------- /tests/database/papr/audible/PaprAudibleChapterHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/database/papr/audible/PaprAudibleChapterHelper.test.ts -------------------------------------------------------------------------------- /tests/database/papr/initialize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/database/papr/initialize.test.ts -------------------------------------------------------------------------------- /tests/database/redis/RedisHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/database/redis/RedisHelper.test.ts -------------------------------------------------------------------------------- /tests/datasets/audible/authors/scrape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/audible/authors/scrape.ts -------------------------------------------------------------------------------- /tests/datasets/audible/books/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/audible/books/api.ts -------------------------------------------------------------------------------- /tests/datasets/audible/books/chapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/audible/books/chapter.ts -------------------------------------------------------------------------------- /tests/datasets/audible/books/scrape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/audible/books/scrape.ts -------------------------------------------------------------------------------- /tests/datasets/audible/books/stitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/audible/books/stitch.ts -------------------------------------------------------------------------------- /tests/datasets/helpers/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/helpers/authors.ts -------------------------------------------------------------------------------- /tests/datasets/helpers/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/helpers/books.ts -------------------------------------------------------------------------------- /tests/datasets/helpers/chapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/datasets/helpers/chapters.ts -------------------------------------------------------------------------------- /tests/helpers/authors/audible/ScrapeHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/authors/audible/ScrapeHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/authors/audible/SeedHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/authors/audible/SeedHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/books/audible/ApiHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/books/audible/ApiHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/books/audible/ChapterHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/books/audible/ChapterHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/books/audible/ScrapeHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/books/audible/ScrapeHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/books/audible/StitchHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/books/audible/StitchHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/routes/AuthorShowHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/routes/AuthorShowHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/routes/BookShowHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/routes/BookShowHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/routes/ChapterShowHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/routes/ChapterShowHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/routes/RouteCommonHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/routes/RouteCommonHelper.test.ts -------------------------------------------------------------------------------- /tests/helpers/utils/UpdateScheduler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/utils/UpdateScheduler.test.ts -------------------------------------------------------------------------------- /tests/helpers/utils/cleanupDescription.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/utils/cleanupDescription.test.ts -------------------------------------------------------------------------------- /tests/helpers/utils/fetchPlus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/utils/fetchPlus.test.ts -------------------------------------------------------------------------------- /tests/helpers/utils/shared.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/helpers/utils/shared.test.ts -------------------------------------------------------------------------------- /tests/static/messages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/static/messages.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/typing/checkers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/typing/checkers.test.ts -------------------------------------------------------------------------------- /tests/typing/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tests/typing/types.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxamentumtech/audnexus/HEAD/tsconfig.json --------------------------------------------------------------------------------