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

This commit is contained in:
2021-03-18 16:01:26 +00:00
parent 040dea9731
commit d638d202ef
11 changed files with 62 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
export declare type CreateTrackScan = {
card: number;
station: number;
station?: number;
};

View File

@@ -1,5 +1,6 @@
export declare type Runner = {
group: string;
resetRequestedTimestamp?: string;
distance: number;
distanceDonationAmount: number;
id: number;

View File

@@ -0,0 +1,4 @@
export declare type RunnerSelfserviceTimeoutError = {
name: string;
message: 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,5 +2,5 @@ export declare type UpdateTrackScan = {
id: number;
runner: number;
valid?: boolean;
station: number;
track: number;
};