aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sdk/src/index.ts
blob: e233e6c1bbcd3e0cb180a84bf1c82704a63c2e5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import createClient from "openapi-fetch";

import type { components, paths } from "./karakeep-api.d.ts";

/**
 * @deprecated Use createKarakeepClient instead.
 */
export const createHoarderClient = createClient<paths>;

export const createKarakeepClient = createClient<paths>;

export type KarakeepAPISchemas = components["schemas"];