chore: 1.2.2

This commit is contained in:
Nicolai Ort 2025-04-08 21:10:08 +02:00
parent cdddf5c2b4
commit fb04bb8dc2
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
9 changed files with 9 additions and 2 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: '1.3.5', VERSION: '1.3.6',
WITH_CREDENTIALS: false, WITH_CREDENTIALS: false,
TOKEN: undefined, TOKEN: undefined,
USERNAME: undefined, USERNAME: undefined,

View File

@ -6,4 +6,5 @@ export type CreateDonor = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -5,4 +5,5 @@ export type CreateParticipant = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -6,4 +6,5 @@ export type CreateRunner = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -5,4 +5,5 @@ export type CreateSelfServiceCitizenRunner = {
lastname: string; lastname: string;
phone?: string; phone?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -6,4 +6,5 @@ export type CreateSelfServiceRunner = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -7,4 +7,5 @@ export type UpdateDonor = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -7,4 +7,5 @@ export type UpdateRunner = {
phone?: string; phone?: string;
email?: string; email?: string;
address?: any; address?: any;
created_via?: string;
}; };

View File

@ -1,7 +1,7 @@
{ {
"name": "@odit/lfk-client-js", "name": "@odit/lfk-client-js",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for native JS applications.", "description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for native JS applications.",
"version": "1.2.1", "version": "1.2.2",
"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",