TypeScript SDK for Jellyfin
Go to file
2022-09-06 07:54:48 -04:00
.github Use org nodejs default renovate config 2022-09-06 12:13:32 +02:00
.vscode Add config to let ESLint format and fix on save 2021-09-23 11:12:15 +02:00
docs Update documentation 2022-07-14 11:51:38 -04:00
openapi-templates Add MPL license header to generated client 2022-08-22 15:13:30 -04:00
scripts Fix openapi schema 2021-08-30 00:36:18 -04:00
src Update generated sources to 10.8.4 2022-09-05 22:18:48 -04:00
.eslintignore Rewrite normalize-url 2022-07-11 17:21:58 -04:00
.eslintrc.js Fix jest linting 2021-10-12 09:27:49 -04:00
.gitattributes Initial commit 2021-08-29 01:00:52 -04:00
.gitignore Move output directory to lib 2022-03-15 00:10:08 -04:00
.npmignore Use groups for integration and unit tests 2021-09-21 00:38:48 -04:00
.npmrc Update lockfile to v3 2022-09-06 11:59:31 +02:00
codecov.yml Add codecov configuration 2021-09-20 15:58:00 -04:00
jest.config.js Rewrite normalize-url 2022-07-11 17:21:58 -04:00
LICENSE Update license 2021-09-14 01:10:15 -04:00
openapi.json Update generated sources to 10.8.4 2022-09-05 22:18:48 -04:00
openapitools.json Add custom template for license info 2022-08-22 15:05:32 -04:00
package-lock.json Update lockfile to v3 2022-09-06 11:59:31 +02:00
package.json Pin and update conflicting dependencies 2022-09-06 11:59:30 +02:00
README.md Update README 2022-07-14 13:46:51 -04:00
tsconfig.json Rewrite normalize-url 2022-07-11 17:21:58 -04:00

jellyfin-sdk-typescript

Part of the Jellyfin Project


Logo Banner

MPL-2.0 license Current Release npm Codecov

A TypeScript SDK for Jellyfin.

Warning: This project is under active development, so API changes may occur.

Install

npm i --save @thornbill/jellyfin-sdk

or

yarn add @thornbill/jellyfin-sdk

Supported Jellyfin Versions

SDK Version Jellyfin Version
0.6.0 10.8.1
0.5.0 10.8.0
<0.5.0 10.7.x

React Native

The generated Axios client used in this library depends on URL and URLSearchParams to be available on the global scope. React Native only includes incomplete implementations for these classes, so a polyfill is required. React Native URL Polyfill seems like a good solution for this.

Usage

// Create a new instance of the SDK
const jellyfin = new Jellyfin({
    clientInfo: {
        name: 'My Client Application',
        version: '1.0.0'
    },
    deviceInfo: {
        name: 'Device Name',
        id: 'unique-device-id'
    }
});

// Find a valid server by trying to connect using common protocols and ports.
// Each server receives a score based on security, speed, and other criteria.
const servers = await jellyfin.discovery.getRecommendedServerCandidates('demo.jellyfin.org/stable');
// A utility function for finding the best result is available.
// If there is no "best" server, an error message should be displayed.
const best = jellyfin.discovery.findBestServer(servers);

// Create an API instance
const api = jellyfin.createApi(best.address);

// Each API endpoint is exposed via a getter on the SDK instance using
// a shared Configuration and Axios instance. For example the /System APIs
// are available as api.systemApi.

// Fetch the public system info
const info = await getSystemApi(api).getPublicSystemInfo();
console.log('Info =>', info.data);

// Fetch the list of public users
const users = await getUserApi(api).getPublicUsers();
console.log('Users =>', users.data);

// A helper method for authentication has been added to the SDK because
// the default method exposed in the generated Axios client is rather
// cumbersome to use.
const auth = await api.authenticateUserByName('demo', '');
console.log('Auth =>', auth.data);

// Authentication state is stored internally in the Api class, so now
// requests that require authentication can be made normally
const libraries = await getLibraryApi(api).getMediaFolders();
console.log('Libraries =>', libraries.data);

// A helper method for logging out the current user has been added to the
// SDK so the internal state is updated correctly.
await api.logout();

Breaking Changes

v0.6.0

  • Updated OpenAPI spec for Jellyfin 10.8.1. #208

v0.5.0

  • Build directory is now lib instead of dist. Any imports used that were previously in dist will need updated. #147
  • Duplicated exports were removed. Any imports may need updated if you referenced one of the duplicates. #148
  • API classes are no longer exposed via getters. Instead you need to call a function passing the Api instance as a parameter. For example: getSystemApi(api). While I do feel this is a slightly worse developer experience, it was a necessary change to support tree-shaking. #149
  • BaseItemKind is now included in the generated client. Imports will need updated. #187

Roadmap to 1.0

  • More complete device profile generation utilities
  • Use custom generator templates for API versions
  • Automate OpenAPI spec updates using GitHub
    • Create branch tracking unstable Jellyfin builds