Gitea API client for Node.
I will try to keep the package up to date with new released versions.
npm i gitea-api
import { GiteaApi } from "gitea-api";
const client = new GiteaApi({
BASE: 'https://gitea.domain.com',
WITH_CREDENTIALS: true,
TOKEN: ""
});
Generated with (from repo folder):
cd ..
npm --global i openapi-typescript-codegen
openapi -c fetch -o ./gitea-api/ -i {gitea-url}/swagger.v1.json --name="GiteaApi" --useOptions --client node