🚀New lib version v0.1.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Nicolai Ort 2021-01-15 19:40:46 +00:00
parent 79606e3f43
commit 3e9d3e4120
7 changed files with 8 additions and 8 deletions

View File

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

View File

@ -1,6 +1,6 @@
export declare type UpdatePermission = { export declare type UpdatePermission = {
id: number; id: number;
principal: any; principal: number;
target: string; target: string;
action: string; action: string;
}; };

View File

@ -1,6 +1,6 @@
export declare type UpdateRunner = { export declare type UpdateRunner = {
id: number; id: number;
group: any; group: number;
firstname: string; firstname: string;
middlename?: string; middlename?: string;
lastname: string; lastname: string;

View File

@ -1,6 +1,6 @@
export declare type UpdateRunnerTeam = { export declare type UpdateRunnerTeam = {
id: number; id: number;
parentGroup: any; parentGroup: number;
name: string; name: string;
contact?: number; contact?: number;
}; };

View File

@ -1,6 +1,6 @@
export declare type UpdateTrackScan = { export declare type UpdateTrackScan = {
id: number; id: number;
runner?: number; runner: number;
valid?: boolean; valid?: boolean;
station?: number; station: number;
}; };

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"name": "@odit/lfk-client-node", "name": "@odit/lfk-client-node",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for NodeJS applications.", "description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for NodeJS applications.",
"version": "0.0.12", "version": "0.1.0",
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",