Compare commits

...

4 Commits

3 changed files with 12 additions and 2 deletions

4
dist/models/CreateDonation.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export type CreateDonation = {
donor?: number;
paidAmount?: number;
};

5
dist/models/CreateDonation.js vendored Normal file
View File

@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });

View File

@ -1,7 +1,7 @@
{
"name": "@odit/lfk-client-js",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for native JS applications.",
"version": "1.2.6",
"version": "1.2.7",
"license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
@ -27,7 +27,8 @@
"build:compile": "tsc",
"build:cleanup": "rimraf ./lib",
"update:openapi": "rimraf ./openapi.json && node ./scripts/getliveopenapi.js",
"update:auto": "npm run update:openapi && npm run build && npm run release",
"update:auto": "npm run update:openapi && npm run build && npm run update:commit && npm run release",
"update:commit": "git add . && git commit -m \"chore: update openapi.json\"",
"release": "release-it --only-version && npm publish"
},
"bugs": {