mirror of
https://github.com/immich-app/immich.git
synced 2026-02-05 11:26:41 -08:00
- Allow combobox to have thumbnails - Add the search-albums-section - Update search-display-section to disable isNotInAlbum checkbox when albums are selected - In search filter modal, put albums and tags side by side. Saves space and neither need to be full width - Add album names filter chips to search page
@immich/sdk
A TypeScript SDK for interfacing with the Immich API.
Install
npm i --save @immich/sdk
Usage
For a more detailed example, check out the @immich/cli.
import { getAllAlbums, getMyUser, init } from "@immich/sdk";
const API_KEY = "<API_KEY>"; // process.env.IMMICH_API_KEY
init({ baseUrl: "https://demo.immich.app/api", apiKey: API_KEY });
const user = await getMyUser();
const albums = await getAllAlbums({});
console.log({ user, albums });