From fb04bb8dc21366666702e38ecf4cfd8159408ea6 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 8 Apr 2025 21:10:08 +0200 Subject: [PATCH] chore: 1.2.2 --- dist/core/OpenAPI.js | 2 +- dist/models/CreateDonor.d.ts | 1 + dist/models/CreateParticipant.d.ts | 1 + dist/models/CreateRunner.d.ts | 1 + dist/models/CreateSelfServiceCitizenRunner.d.ts | 1 + dist/models/CreateSelfServiceRunner.d.ts | 1 + dist/models/UpdateDonor.d.ts | 1 + dist/models/UpdateRunner.d.ts | 1 + package.json | 2 +- 9 files changed, 9 insertions(+), 2 deletions(-) diff --git a/dist/core/OpenAPI.js b/dist/core/OpenAPI.js index 5bda182..3c9c1dd 100644 --- a/dist/core/OpenAPI.js +++ b/dist/core/OpenAPI.js @@ -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, diff --git a/dist/models/CreateDonor.d.ts b/dist/models/CreateDonor.d.ts index 7a6ad13..79c8b0b 100644 --- a/dist/models/CreateDonor.d.ts +++ b/dist/models/CreateDonor.d.ts @@ -6,4 +6,5 @@ export type CreateDonor = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/CreateParticipant.d.ts b/dist/models/CreateParticipant.d.ts index df7facf..4cd9784 100644 --- a/dist/models/CreateParticipant.d.ts +++ b/dist/models/CreateParticipant.d.ts @@ -5,4 +5,5 @@ export type CreateParticipant = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/CreateRunner.d.ts b/dist/models/CreateRunner.d.ts index 8202b10..dd605c1 100644 --- a/dist/models/CreateRunner.d.ts +++ b/dist/models/CreateRunner.d.ts @@ -6,4 +6,5 @@ export type CreateRunner = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/CreateSelfServiceCitizenRunner.d.ts b/dist/models/CreateSelfServiceCitizenRunner.d.ts index a39ff42..6f98258 100644 --- a/dist/models/CreateSelfServiceCitizenRunner.d.ts +++ b/dist/models/CreateSelfServiceCitizenRunner.d.ts @@ -5,4 +5,5 @@ export type CreateSelfServiceCitizenRunner = { lastname: string; phone?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/CreateSelfServiceRunner.d.ts b/dist/models/CreateSelfServiceRunner.d.ts index 0b1cf93..b1b3179 100644 --- a/dist/models/CreateSelfServiceRunner.d.ts +++ b/dist/models/CreateSelfServiceRunner.d.ts @@ -6,4 +6,5 @@ export type CreateSelfServiceRunner = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/UpdateDonor.d.ts b/dist/models/UpdateDonor.d.ts index ae9a914..0f8a417 100644 --- a/dist/models/UpdateDonor.d.ts +++ b/dist/models/UpdateDonor.d.ts @@ -7,4 +7,5 @@ export type UpdateDonor = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/dist/models/UpdateRunner.d.ts b/dist/models/UpdateRunner.d.ts index 165abdb..7815a54 100644 --- a/dist/models/UpdateRunner.d.ts +++ b/dist/models/UpdateRunner.d.ts @@ -7,4 +7,5 @@ export type UpdateRunner = { phone?: string; email?: string; address?: any; + created_via?: string; }; diff --git a/package.json b/package.json index 70db0fd..1384a43 100644 --- a/package.json +++ b/package.json @@ -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",