Merge branch 'main' of git.odit.services:lfk/lfk-client-js
ci/woodpecker/manual/release Pipeline was successful Details

This commit is contained in:
Nicolai Ort 2023-11-06 20:18:48 +01:00
commit ffd92702bb
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
7 changed files with 9 additions and 3 deletions

View File

@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.OpenAPI = void 0;
exports.OpenAPI = {
BASE: '',
VERSION: '1.0.1',
VERSION: '1.1.3',
WITH_CREDENTIALS: false,
TOKEN: undefined,
USERNAME: undefined,

View File

@ -2,4 +2,5 @@ export type ResponseRunnerGroup = {
id: number;
name: string;
contact?: any;
total_distance?: number;
};

View File

@ -6,4 +6,5 @@ export type ResponseRunnerOrganization = {
id: number;
name: string;
contact?: any;
total_distance?: number;
};

View File

@ -3,4 +3,5 @@ export type ResponseRunnerTeam = {
id: number;
name: string;
contact?: any;
total_distance?: number;
};

View File

@ -6,5 +6,8 @@ export type ResponseStats = {
total_scans: number;
total_distance: number;
total_donation: number;
total_donations: number;
total_donors: number;
average_distance: number;
average_donation: number;
};

File diff suppressed because one or more lines are too long

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.0.1",
"version": "1.1.3",
"license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",