🚀New lib version v0.10.1 [CI SKIP]
continuous-integration/drone Build is passing Details

This commit is contained in:
Nicolai Ort 2021-04-03 16:30:05 +00:00
parent 0d8d8f1af4
commit 1a378fcea9
9 changed files with 35 additions and 10 deletions

View File

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

1
dist/index.d.ts vendored
View File

@ -86,6 +86,7 @@ export type { ResponseRunnerTeam } from './models/ResponseRunnerTeam';
export type { ResponseScan } from './models/ResponseScan';
export type { ResponseScanStation } from './models/ResponseScanStation';
export type { ResponseSelfServiceDonation } from './models/ResponseSelfServiceDonation';
export type { ResponseSelfServiceDonor } from './models/ResponseSelfServiceDonor';
export type { ResponseSelfServiceOrganisation } from './models/ResponseSelfServiceOrganisation';
export type { ResponseSelfServiceRunner } from './models/ResponseSelfServiceRunner';
export type { ResponseSelfServiceScan } from './models/ResponseSelfServiceScan';

View File

@ -0,0 +1,6 @@
export declare type ResponseSelfServiceDonor = {
id: number;
firstname: string;
middlename: string;
lastname: string;
};

View File

@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });

View File

@ -2,7 +2,7 @@ export declare type ResponseSelfServiceRunner = {
distance: number;
donationAmount: number;
group: string;
donations: string;
distanceDonations: string;
token?: string;
id: number;
firstname: string;

View File

@ -41,27 +41,30 @@ export declare class RunnerSelfService {
* Request new token
* Use this endpoint to reuqest a new selfservice token/link to be sent to your mail address (rate limited to one mail every 24hrs).
* @param mail
* @param locale
* @returns any Successful response
* @throws ApiError
*/
static runnerSelfServiceControllerRequestNewToken(mail?: string): Promise<any>;
static runnerSelfServiceControllerRequestNewToken(mail?: string, locale?: string): Promise<any>;
/**
* Register runner
* Create a new selfservice runner in the citizen org. <br> This endpoint shoud be used to allow "everyday citizen" to register themselves. <br> You have to provide a mail address, b/c the future we'll implement email verification.
* @param locale
* @param requestBody CreateSelfServiceCitizenRunner
* @returns ResponseSelfServiceRunner
* @throws ApiError
*/
static runnerSelfServiceControllerRegisterRunner(requestBody?: CreateSelfServiceCitizenRunner): Promise<ResponseSelfServiceRunner>;
static runnerSelfServiceControllerRegisterRunner(locale?: string, requestBody?: CreateSelfServiceCitizenRunner): Promise<ResponseSelfServiceRunner>;
/**
* Register organization runner
* Create a new selfservice runner in a provided org. <br> The orgs get provided and authorized via api tokens that can be optained via the /organizations endpoint.
* @param token
* @param locale
* @param requestBody CreateSelfServiceRunner
* @returns ResponseSelfServiceRunner
* @throws ApiError
*/
static runnerSelfServiceControllerRegisterOrganizationRunner(token: string, requestBody?: CreateSelfServiceRunner): Promise<ResponseSelfServiceRunner>;
static runnerSelfServiceControllerRegisterOrganizationRunner(token: string, locale?: string, requestBody?: CreateSelfServiceRunner): Promise<ResponseSelfServiceRunner>;
/**
* Get selfservice org
* Get the basic info and teams for a org.

View File

@ -66,15 +66,17 @@ class RunnerSelfService {
* Request new token
* Use this endpoint to reuqest a new selfservice token/link to be sent to your mail address (rate limited to one mail every 24hrs).
* @param mail
* @param locale
* @returns any Successful response
* @throws ApiError
*/
static async runnerSelfServiceControllerRequestNewToken(mail) {
static async runnerSelfServiceControllerRequestNewToken(mail, locale) {
const result = await request_1.request({
method: 'POST',
path: `/api/runners/forgot`,
query: {
'mail': mail,
'locale': locale,
},
});
return result.body;
@ -82,14 +84,18 @@ class RunnerSelfService {
/**
* Register runner
* Create a new selfservice runner in the citizen org. <br> This endpoint shoud be used to allow "everyday citizen" to register themselves. <br> You have to provide a mail address, b/c the future we'll implement email verification.
* @param locale
* @param requestBody CreateSelfServiceCitizenRunner
* @returns ResponseSelfServiceRunner
* @throws ApiError
*/
static async runnerSelfServiceControllerRegisterRunner(requestBody) {
static async runnerSelfServiceControllerRegisterRunner(locale, requestBody) {
const result = await request_1.request({
method: 'POST',
path: `/api/runners/register`,
query: {
'locale': locale,
},
body: requestBody,
});
return result.body;
@ -98,14 +104,18 @@ class RunnerSelfService {
* Register organization runner
* Create a new selfservice runner in a provided org. <br> The orgs get provided and authorized via api tokens that can be optained via the /organizations endpoint.
* @param token
* @param locale
* @param requestBody CreateSelfServiceRunner
* @returns ResponseSelfServiceRunner
* @throws ApiError
*/
static async runnerSelfServiceControllerRegisterOrganizationRunner(token, requestBody) {
static async runnerSelfServiceControllerRegisterOrganizationRunner(token, locale, requestBody) {
const result = await request_1.request({
method: 'POST',
path: `/api/runners/register/${token}`,
query: {
'locale': locale,
},
body: requestBody,
});
return result.body;

File diff suppressed because one or more lines are too long

View File

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