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 = {
BASE: '',
VERSION: '1.3.5',
VERSION: '1.3.6',
WITH_CREDENTIALS: false,
TOKEN: undefined,
USERNAME: undefined,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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